Skip to content

Commit

Permalink
Prepare for v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoPrevato authored Aug 14, 2023
1 parent cd488f4 commit a037c55
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.3] - 2023-08-14 :sun_with_face:
- Checks `scoped_services` before resolving from map when in a scope, by [StummeJ](https://github.com/StummeJ).
- Allow getting from scope context without needing to provide scope, by [StummeJ](https://github.com/StummeJ).

## [2.0.2] - 2023-03-31 :flamingo:
- Ignores `ClassVar` properties when resolving dependencies by class notations.
- Marks `rodi` 2 as stable.
Expand Down
2 changes: 1 addition & 1 deletion rodi/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.2"
__version__ = "2.0.3"
2 changes: 1 addition & 1 deletion rodi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):

def get(
self,
desired_type: Union[Union[Type[T], str], str],
desired_type: Union[Type[T], str],
scope: Optional["ActivationScope"] = None,
*,
default: Optional[Any] = ...,
Expand Down

0 comments on commit a037c55

Please sign in to comment.