diff --git a/changelog b/changelog index 20b9929..765bb84 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,17 @@ +2019-01-12 Kirill Pavlov + + * ADD: Ability to override function name with decorator convention in + dispatcher + * REF: Improve function parameter introspection: use more stable + approach for python3, allow both args and kwards parameters check at + the same time. + * TST: Switch from nose and nose2 to pytest + * TST: Switch from Travis CI to CircleCI, test py26-py37 + * TST: Switch from coveralls to codecov service + * DEL: Remove Flask logging (it broke batch requests) + * DEL: Clean Makefile shortcuts, remove unused ones + * DOC: Add opencollective badge + 2018-08-26 Kirill Pavlov * Add license file to the dist/ diff --git a/jsonrpc/__init__.py b/jsonrpc/__init__.py index bc6d1dc..a4095b9 100644 --- a/jsonrpc/__init__.py +++ b/jsonrpc/__init__.py @@ -1,7 +1,7 @@ from .manager import JSONRPCResponseManager from .dispatcher import Dispatcher -__version = (1, 11, 1) +__version = (1, 12, 1) __version__ = version = '.'.join(map(str, __version)) __project__ = PROJECT = __name__