Skip to content

Commit

Permalink
REL: 1.12.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlov99 committed Jan 12, 2019
1 parent de51429 commit c6d0f05
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
2019-01-12 Kirill Pavlov <k@p99.io>

* 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 <k@p99.io>

* Add license file to the dist/
Expand Down
2 changes: 1 addition & 1 deletion jsonrpc/__init__.py
Original file line number Diff line number Diff line change
@@ -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__
Expand Down

0 comments on commit c6d0f05

Please sign in to comment.