Skip to content

Commit 2566beb

Browse files
committed
Designate 0.5 release
1 parent d6c3399 commit 2566beb

3 files changed

Lines changed: 70 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,67 @@
1+
# lazy-loader 0.5
2+
3+
## Enhancements
4+
5+
- Add `suppress_warning` parameter to the `load` function ([#146](https://github.com/scientific-python/lazy-loader/pull/146)).
6+
7+
## Bug Fixes
8+
9+
- fix: Remove problematic try/finally block ([#137](https://github.com/scientific-python/lazy-loader/pull/137)).
10+
- Make sure that `__dir__` returns new copies of `__all__` ([#135](https://github.com/scientific-python/lazy-loader/pull/135)).
11+
- Allow disabled eager loading with EAGER_IMPORT=0 ([#166](https://github.com/scientific-python/lazy-loader/pull/166)).
12+
13+
## Documentation
14+
15+
- Update release process doc ([#105](https://github.com/scientific-python/lazy-loader/pull/105)).
16+
17+
## Maintenance
18+
19+
- Drop Python 3.7 support ([#106](https://github.com/scientific-python/lazy-loader/pull/106)).
20+
- Update ruff config ([#110](https://github.com/scientific-python/lazy-loader/pull/110)).
21+
- Update label check action ([#112](https://github.com/scientific-python/lazy-loader/pull/112)).
22+
- Rename repo to match package name ([#119](https://github.com/scientific-python/lazy-loader/pull/119)).
23+
- Test on Python 3.13 development releases ([#120](https://github.com/scientific-python/lazy-loader/pull/120)).
24+
- Update pre-commit ([#122](https://github.com/scientific-python/lazy-loader/pull/122)).
25+
- Update ruff config ([#123](https://github.com/scientific-python/lazy-loader/pull/123)).
26+
- Update GH actions ([#124](https://github.com/scientific-python/lazy-loader/pull/124)).
27+
- Add codespell pre-commit ([#125](https://github.com/scientific-python/lazy-loader/pull/125)).
28+
- Update pytest config ([#126](https://github.com/scientific-python/lazy-loader/pull/126)).
29+
- Update pre-commit (12/2024) ([#138](https://github.com/scientific-python/lazy-loader/pull/138)).
30+
- Support Python 3.13 ([#139](https://github.com/scientific-python/lazy-loader/pull/139)).
31+
- Drop Python 3.8 support ([#140](https://github.com/scientific-python/lazy-loader/pull/140)).
32+
- rf: Use list.copy() instead of list() ([#148](https://github.com/scientific-python/lazy-loader/pull/148)).
33+
- Switch to src layout, move tests to root ([#151](https://github.com/scientific-python/lazy-loader/pull/151)).
34+
- Update development status as Production/Stable ([#108](https://github.com/scientific-python/lazy-loader/pull/108)).
35+
- Add spin configuration ([#152](https://github.com/scientific-python/lazy-loader/pull/152)).
36+
- test: Update test cases to get full coverage ([#153](https://github.com/scientific-python/lazy-loader/pull/153)).
37+
- Support for Python 3.14 ([#158](https://github.com/scientific-python/lazy-loader/pull/158)).
38+
- Set dependabot cooldown and schedule for 15th of each month ([#162](https://github.com/scientific-python/lazy-loader/pull/162)).
39+
40+
## Contributors
41+
42+
7 authors added to this release (alphabetically):
43+
44+
- Brigitta Sipőcz ([@bsipocz](https://github.com/bsipocz))
45+
- Chris Markiewicz ([@effigies](https://github.com/effigies))
46+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
47+
- Lars Grüter ([@lagru](https://github.com/lagru))
48+
- Mark Harfouche ([@hmaarrfk](https://github.com/hmaarrfk))
49+
- Ofek Lev ([@ofek](https://github.com/ofek))
50+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
51+
52+
7 reviewers added to this release (alphabetically):
53+
54+
- Brigitta Sipőcz ([@bsipocz](https://github.com/bsipocz))
55+
- Chris Markiewicz ([@effigies](https://github.com/effigies))
56+
- Dan Schult ([@dschult](https://github.com/dschult))
57+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
58+
- Lars Grüter ([@lagru](https://github.com/lagru))
59+
- Ofek Lev ([@ofek](https://github.com/ofek))
60+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
61+
62+
_These lists are automatically generated, and may not be complete or may contain
63+
duplicates._
64+
165
# lazy-loader 0.4
266

367
We're happy to announce the release of lazy-loader 0.4!

RELEASE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ Example `version number`
2626

2727
- Put the output of the above command at the top of `CHANGELOG.md`
2828

29-
cat ${VERSION}.md | cat - ${LOG} > temp && mv temp ${LOG}
29+
cat ${VERSION}.md | cat - ${LOG} > temp && mv temp ${LOG}ch
3030

31-
- Update `version` in `lazy_loader/__init__.py`.
31+
- Update `version` in `src/lazy-loader/__init__.py`.
3232

3333
- Commit changes:
3434

35-
git add lazy_loader/__init__.py ${LOG}
35+
git add src/lazy-loader/__init__.py ${LOG}
3636
git commit -m "Designate ${VERSION} release"
3737

3838
- Tag the release in git:
@@ -61,10 +61,10 @@ Example `version number`
6161
- close old milestone
6262
- ensure new milestone exists (perhaps setting due date)
6363

64-
- Update `version` in `lazy_loader/__init__.py`.
64+
- Update `version` in `src/lazy-loader/__init__.py`.
6565

6666
- Commit changes:
6767

68-
git add lazy_loader/__init__.py
68+
git add src/lazy-loader/__init__.py
6969
git commit -m 'Bump version'
7070
git push origin main

src/lazy_loader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import types
1515
import warnings
1616

17-
__version__ = "0.5rc0.dev0"
17+
__version__ = "0.5"
1818
__all__ = ["attach", "attach_stub", "load"]
1919

2020

0 commit comments

Comments
 (0)