Skip to content

Commit

Permalink
chore(main): release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and ducdetronquito committed Nov 13, 2024
1 parent 1961456 commit 07ecd01
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.5.1"
".": "1.0.0"
}
28 changes: 28 additions & 0 deletions CHANGELOG.md
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))
2 changes: 1 addition & 1 deletion nurse/__init__.py
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"]
2 changes: 1 addition & 1 deletion pyproject.toml
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]>"]

Expand Down

0 comments on commit 07ecd01

Please sign in to comment.