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

Commit

Permalink
prepare next release
Browse files Browse the repository at this point in the history
  • Loading branch information
popravich committed Aug 14, 2015
1 parent dd6cbaf commit 5cd18e1
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 9 deletions.
27 changes: 24 additions & 3 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
Changes
-------

0.2.3 (xxxx-xx-xx)
0.2.4 (xxxx-xx-xx)
^^^^^^^^^^^^^^^^^^


0.2.3 (2015-08-14)
^^^^^^^^^^^^^^^^^^

* Redis cluster support work in progress;

* Fixed pool issue causing pool growth over max size & ``acquire`` call hangs
(see https://github.com/aio-libs/aioredis/issues/71);

* ``info`` server command result parsing implemented;

* Fixed behavior of util functions
(see https://github.com/aio-libs/aioredis/issues/70);

* ``hstrlen`` command added;

* Few fixes in examples;

* Few fixes in documentation;


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

Expand Down Expand Up @@ -39,7 +60,7 @@ Changes

* Pub/Sub support added;

* Fix in ZREVRANGEBYSCORE command
* Fix in ``zrevrangebyscore`` command
(see https://github.com/aio-libs/aioredis/pull/62);

* Fixes/tests/docs;
Expand All @@ -52,7 +73,7 @@ Changes

* wait_closed method added for clean connections shutdown;

* zscore command fixed;
* ``zscore`` command fixed;

* Test fixes;

Expand Down
11 changes: 9 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ FLAKE ?= pyflakes
PEP ?= pep8
REDIS_VERSION ?= "$(shell redis-cli INFO SERVER | sed -n 2p)"

.PHONY: all flake doc test cov dist
all: flake doc cov
.PHONY: all flake doc test cov dist devel
all: aioredis.egg-info flake doc cov

doc:
make -C docs html
Expand All @@ -25,3 +25,10 @@ cov coverage:
dist:
-rm -r build dist aioredis.egg-info
$(PYTHON) setup.py sdist bdist_wheel

devel: aioredis.egg-info
pip install -U pip
pip install -U pyflakes pep8 sphinx coverage bumpversion

aioredis.egg-info:
pip install -Ue .
2 changes: 0 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ Features
- Low-level & high-level API
- :term:`hiredis` parser

.. note:: High-level API is under development

Installation
------------

Expand Down
12 changes: 10 additions & 2 deletions docs/mixins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,13 @@ Also see :ref:`aioredis.Channel<aioredis-channel>`.
Cluster commands
----------------

.. autoclass:: ClusterCommandsMixin
:members:
.. warning::
Current release (|release|) of the library **does not support**
`Redis Cluster`_ in a full manner.
It provides only several API methods which may be changed in future.

.. _Redis Cluster: http://redis.io/topics/cluster-tutorial

.. ::
.. autoclass:: ClusterCommandsMixin
:members:

0 comments on commit 5cd18e1

Please sign in to comment.