From 8a3a49463b8ae370f54cfe31746a61d8377e815e Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Wed, 21 Sep 2022 12:21:12 -0700 Subject: [PATCH] Designate 0.1 release --- CHANGELOG.md | 14 ++++++++++++-- pyproject.toml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ac5f5a..4ddb7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog -## [v0.1rc3](https://github.com/scientific-python/lazy_loader/tree/v0.1rc3) +## [v0.1](https://github.com/scientific-python/lazy_loader/tree/v0.1) (2022-09-21) + +[Full Changelog](https://github.com/scientific-python/lazy_loader/compare/v0.1rc3...v0.1) + +**Merged pull requests:** + +- Update classifiers [\#31](https://github.com/scientific-python/lazy_loader/pull/31) ([jarrodmillman](https://github.com/jarrodmillman)) +- Update precommit hooks [\#30](https://github.com/scientific-python/lazy_loader/pull/30) ([jarrodmillman](https://github.com/jarrodmillman)) +- Refer to SPEC for stub usage [\#29](https://github.com/scientific-python/lazy_loader/pull/29) ([stefanv](https://github.com/stefanv)) + +## [v0.1rc3](https://github.com/scientific-python/lazy_loader/tree/v0.1rc3) (2022-08-29) [Full Changelog](https://github.com/scientific-python/lazy_loader/compare/v0.1rc2...v0.1rc3) @@ -21,7 +31,6 @@ - feat: add attach_stub function to load imports from type stubs [\#10](https://github.com/scientific-python/lazy_loader/pull/10) ([tlambert03](https://github.com/tlambert03)) - Avoid conflicts when function is implemented in same-named submodule [\#9](https://github.com/scientific-python/lazy_loader/pull/9) ([stefanv](https://github.com/stefanv)) - DOC fix missing comma in usage example in README.md [\#7](https://github.com/scientific-python/lazy_loader/pull/7) ([adrinjalali](https://github.com/adrinjalali)) -- Run pre-commit hooks [\#3](https://github.com/scientific-python/lazy_loader/pull/3) ([tupui](https://github.com/tupui)) ## [v0.1rc2](https://github.com/scientific-python/lazy_loader/tree/v0.1rc2) (2022-03-10) @@ -42,6 +51,7 @@ **Merged pull requests:** +- Run pre-commit hooks [\#3](https://github.com/scientific-python/lazy_loader/pull/3) ([tupui](https://github.com/tupui)) - Add the packaging infrastructure [\#2](https://github.com/scientific-python/lazy_loader/pull/2) ([tupui](https://github.com/tupui)) \* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_ diff --git a/pyproject.toml b/pyproject.toml index 1874b6f..aafae4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "lazy_loader" -version = "0.1rc4.dev0" +version = "0.1" requires-python = ">=3.7" authors = [{name = "Scientific Python Developers"}] readme = "README.md"