-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1961456
commit 07ecd01
Showing
4 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
".": "0.5.1" | ||
".": "1.0.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Changelog | ||
|
||
## [1.0.0](https://github.com/ZeroGachis/nurse/compare/v0.5.1...1.0.0) (2024-11-13) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* Expose annotations types + make nurse.get() raise when service is not registered | ||
|
||
### Features | ||
|
||
* Expose annotations types + make nurse.get() raise when service is not registered ([6010efe](https://github.com/ZeroGachis/nurse/commit/6010efe7ec6c5ddf1258b60eb336b9ce316b1cde)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* Fix wrong cwd in docker image ([e79648f](https://github.com/ZeroGachis/nurse/commit/e79648f1ec0fe782932bac0e2b5ea76ae7c05c37)) | ||
|
||
|
||
### Miscellaneous Chores | ||
|
||
* Bump from 0.5.1 to 0.6.0 ([b43eede](https://github.com/ZeroGachis/nurse/commit/b43eedee40fd53df90b17419a8cfc2bf9ce40ddf)) | ||
* **docker:** Bump python version from 3.9 to 3.11 ([fc79b8c](https://github.com/ZeroGachis/nurse/commit/fc79b8cc2029fc6a0704aedd7a61d4daafe2abe7)) | ||
* ignore asdf config file ([4af5675](https://github.com/ZeroGachis/nurse/commit/4af56750dfc059fae8794ef22a3531b2822bbba3)) | ||
* Move dev dependencies to dev group dependencies ([8c67379](https://github.com/ZeroGachis/nurse/commit/8c673791f15593c1c35d69c1da2a653e8db4fe8c)) | ||
* Move flake8 to dev dependencies and upgrade to latest version ([1cb2884](https://github.com/ZeroGachis/nurse/commit/1cb2884dd90082582515945f1656cbe9ca707f99)) | ||
* On release, push to ghcr instead of pypi ([1961456](https://github.com/ZeroGachis/nurse/commit/196145660fbed3047221a6b07b04e95fca62904e)) | ||
* Upgrade python/pytest + migrate to ruff ([1d4c960](https://github.com/ZeroGachis/nurse/commit/1d4c960564675d825fe599d1a2f6f936e1b6ab55)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from nurse.api import clear, get, serve | ||
from nurse.exceptions import ServiceNotFound | ||
|
||
__version__ = "0.5.0" | ||
__version__ = "1.0.0" | ||
__all__ = ["clear", "get", "serve", "ServiceNotFound"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "nurse" | ||
version = "0.6.0" | ||
version = "1.0.0" | ||
description = "A thoughtful dependency injection framework" | ||
authors = ["ducdetronquito <[email protected]>"] | ||
|
||
|