Skip to content

Commit

Permalink
release 1.2.0 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
pohmelie authored Jun 5, 2020
1 parent 19aba3b commit 80e38a9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,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).

## [1.2.0] - 2020-06-02
### Added
- Injector `clear` method

## [1.1.0] - 2019-12-05
### Added
- This changelog
Expand Down
6 changes: 3 additions & 3 deletions giveme/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .core import inject, register, manager
from .injector import Injector, DependencyNotFoundError
from .core import inject, manager, register
from .injector import DependencyNotFoundError, Injector

__version__ = '1.1.0'
__version__ = '1.2.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='giveme',
version='1.1.0',
version='1.2.0',
description='Tiny dependency injection framework',
author='Steinthor Palsson',
author_email='[email protected]',
Expand Down

0 comments on commit 80e38a9

Please sign in to comment.