Skip to content

Commit

Permalink
2.2.0
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
actions-user committed Apr 5, 2021
1 parent 6a8d7e1 commit 4a8b6ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

<!--next-version-placeholder-->

## v2.2.0 (2021-04-05)
### Feature
* Add the `immutable` decorator ([`e8f023a`](https://github.com/kalekundert/autoprop/commit/e8f023ab099b3d1477bb285267e11528c43c4f5c))

## v2.1.1 (2021-04-01)
### Fix
* Cache getters (not just properties) ([`ab454eb`](https://github.com/kalekundert/autoprop/commit/ab454eb1d247b147675fc6c377747892588762c1))
Expand Down
2 changes: 1 addition & 1 deletion autoprop.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from functools import partial
from collections import defaultdict

__version__ = '2.1.1'
__version__ = '2.2.0'

_EXPECTED_NUM_ARGS = {'get': 0, 'set': 1, 'del': 0}
_CACHE_POLICIES = ['dynamic', 'class', 'object', 'property', 'immutable']
Expand Down

0 comments on commit 4a8b6ec

Please sign in to comment.