Skip to content

Commit 4596986

Browse files
committed
Designate 0.4 release
1 parent dcec9b4 commit 4596986

File tree

3 files changed

+72
-1
lines changed

3 files changed

+72
-1
lines changed

CHANGELOG.md

+67
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
# lazy_loader 0.4
2+
3+
We're happy to announce the release of lazy_loader 0.4!
4+
5+
## Enhancements
6+
7+
- ENH: Add require argument to load() to accept version specifiers ([#48](https://github.com/scientific-python/lazy_loader/pull/48)).
8+
- Add version as __version__ ([#97](https://github.com/scientific-python/lazy_loader/pull/97)).
9+
10+
## Bug Fixes
11+
12+
- Avoid exception when __frame_data["code_context"] is None ([#83](https://github.com/scientific-python/lazy_loader/pull/83)).
13+
- Make `lazy_load.load` partially thread-safe ([#90](https://github.com/scientific-python/lazy_loader/pull/90)).
14+
15+
## Documentation
16+
17+
- Add security contact ([#91](https://github.com/scientific-python/lazy_loader/pull/91)).
18+
- Recommend newer Python versions to avoid race ([#102](https://github.com/scientific-python/lazy_loader/pull/102)).
19+
20+
## Maintenance
21+
22+
- Use label-check and attach-next-milestone-action ([#64](https://github.com/scientific-python/lazy_loader/pull/64)).
23+
- Use setuptools ([#65](https://github.com/scientific-python/lazy_loader/pull/65)).
24+
- Specify what goes in sdist ([#66](https://github.com/scientific-python/lazy_loader/pull/66)).
25+
- Use changelist ([#67](https://github.com/scientific-python/lazy_loader/pull/67)).
26+
- Used dependabot ([#68](https://github.com/scientific-python/lazy_loader/pull/68)).
27+
- Bump pre-commit from 3.3 to 3.3.3 ([#69](https://github.com/scientific-python/lazy_loader/pull/69)).
28+
- Bump scientific-python/attach-next-milestone-action from f94a5235518d4d34911c41e19d780b8e79d42238 to a4889cfde7d2578c1bc7400480d93910d2dd34f6 ([#72](https://github.com/scientific-python/lazy_loader/pull/72)).
29+
- Bump scientific-python/attach-next-milestone-action from a4889cfde7d2578c1bc7400480d93910d2dd34f6 to bc07be829f693829263e57d5e8489f4e57d3d420 ([#74](https://github.com/scientific-python/lazy_loader/pull/74)).
30+
- Bump actions/checkout from 3 to 4 ([#75](https://github.com/scientific-python/lazy_loader/pull/75)).
31+
- Bump changelist from 0.1 to 0.3 ([#77](https://github.com/scientific-python/lazy_loader/pull/77)).
32+
- Bump pre-commit from 3.3.3 to 3.4.0 ([#76](https://github.com/scientific-python/lazy_loader/pull/76)).
33+
- Use trusted publisher ([#78](https://github.com/scientific-python/lazy_loader/pull/78)).
34+
- Bump pre-commit from 3.4.0 to 3.5.0 ([#80](https://github.com/scientific-python/lazy_loader/pull/80)).
35+
- Bump changelist from 0.3 to 0.4 ([#81](https://github.com/scientific-python/lazy_loader/pull/81)).
36+
- Bump actions/checkout from 3 to 4 ([#82](https://github.com/scientific-python/lazy_loader/pull/82)).
37+
- Bump actions/setup-python from 4 to 5 ([#85](https://github.com/scientific-python/lazy_loader/pull/85)).
38+
- Bump pre-commit from 3.5.0 to 3.6.0 ([#84](https://github.com/scientific-python/lazy_loader/pull/84)).
39+
- Update pre-commit ([#87](https://github.com/scientific-python/lazy_loader/pull/87)).
40+
- Use setup-python pip cache ([#95](https://github.com/scientific-python/lazy_loader/pull/95)).
41+
- Bump codecov/codecov-action from 3 to 4 ([#93](https://github.com/scientific-python/lazy_loader/pull/93)).
42+
- Bump pre-commit from 3.6.0 to 3.6.2 ([#100](https://github.com/scientific-python/lazy_loader/pull/100)).
43+
- Bump changelist from 0.4 to 0.5 ([#99](https://github.com/scientific-python/lazy_loader/pull/99)).
44+
- Refuse star imports in stub loader ([#101](https://github.com/scientific-python/lazy_loader/pull/101)).
45+
- Bump pre-commit from 3.6.2 to 3.7.0 ([#103](https://github.com/scientific-python/lazy_loader/pull/103)).
46+
- Update pre-commit repos ([#104](https://github.com/scientific-python/lazy_loader/pull/104)).
47+
48+
## Contributors
49+
50+
4 authors added to this release (alphabetically):
51+
52+
- Chris Markiewicz ([@effigies](https://github.com/effigies))
53+
- Dan Schult ([@dschult](https://github.com/dschult))
54+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
55+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
56+
57+
5 reviewers added to this release (alphabetically):
58+
59+
- Brigitta Sipőcz ([@bsipocz](https://github.com/bsipocz))
60+
- Chris Markiewicz ([@effigies](https://github.com/effigies))
61+
- Dan Schult ([@dschult](https://github.com/dschult))
62+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
63+
- Stefan van der Walt ([@stefanv](https://github.com/stefanv))
64+
65+
_These lists are automatically generated, and may not be complete or may contain
66+
duplicates._
67+
168
# Changelog
269

370
## [v0.3](https://github.com/scientific-python/lazy_loader/tree/v0.3) (2023-06-30)

lazy_loader/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import types
1515
import warnings
1616

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

2020

pyproject.toml

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ dev = ["changelist == 0.5"]
3535
Home = "https://scientific-python.org/specs/spec-0001/"
3636
Source = "https://github.com/scientific-python/lazy_loader"
3737

38+
39+
[tool.changelist]
40+
ignored_user_logins = ["dependabot[bot]", "pre-commit-ci[bot]", "web-flow"]
41+
3842
[tool.setuptools.dynamic.version]
3943
attr = 'lazy_loader.__version__'
4044

0 commit comments

Comments
 (0)