Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
Bump version: 0.2.1 → 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
popravich committed Jul 7, 2015
1 parent d4f248d commit fb41411
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
9 changes: 9 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[bumpversion]
current_version = 0.2.2
commit = True
tag = False

[bumpversion:file:aioredis/__init__.py]

[bumpversion:file:docs/conf.py]

22 changes: 21 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@
Changes
-------

0.2.2 (xxxx-xx-xx)
0.2.3 (xxxx-xx-xx)
^^^^^^^^^^^^^^^^^^

0.2.2 (2015-07-07)
^^^^^^^^^^^^^^^^^^

* Decoding data with ``encoding`` paramter now takes into account
list (array) replies
(see https://github.com/aio-libs/aioredis/pull/68);

* ``encoding`` parameter added to following commands:
- generic commands: keys, randomkey;
- hash commands: hgetall, hkeys, hmget, hvals;
- list commands: blpop, brpop, brpoplpush, lindex, lpop, lrange, rpop, rpoplpush;
- set commands: smembers, spop, srandmember;
- string commands: getrange, getset, mget;

* Backward incompatibility:

``ltrim`` command now returns bool value instead of 'OK';

* Tests updated;


0.2.1 (2015-07-06)
^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion aioredis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
)


__version__ = '0.2.1'
__version__ = '0.2.2'

# make pyflakes happy
(create_connection, RedisConnection,
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.2.1'
release = '0.2.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit fb41411

Please sign in to comment.