Skip to content

Commit

Permalink
updated version number and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt George committed Mar 5, 2010
1 parent 3c3fca9 commit 6714883
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
13 changes: 13 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## 0.7.0 (2010-03-05)
* delayed tasks
* resweb pagination
* switch stored timestamps to a unix timestamp
* updated documentation
* upgraded to redis-py 1.34.1
* switched from print statements to the logging module
* import errors on jobs are now reported in the failed queue
* prune dead workers
* small bugfixes in the resweb package
* improved failure formatting
* datetime json parser

## 0.5.0 (2010-0114)

* added new documentation to the project
Expand Down
6 changes: 1 addition & 5 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,4 @@ The archive can be found at <http://librelist.com/browser/>.

Stabalize the api.

Flesh out a python version of the web interface. Currently, there is a resweb module that uses the itty micro framework and the jinja2 templating engine to display basics. I'd like to get this as close to the resque web interface as possible.

Better test coverage.

Better documentation.
Add a pre-fork worker module
2 changes: 1 addition & 1 deletion pyres/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.5.0'
__version__ = '0.7.0'

from redis import Redis
import pyres.json_parser as json
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version='0.5.0'
version='0.7.0'
setup(
name='pyres',
version=version,
Expand All @@ -18,7 +18,7 @@
install_requires=[
'simplejson>=2.0.9',
'itty>=0.6.2',
'redis>=0.6.0',
'redis==1.34.1',
'pystache>=0.1.0'
],
classifiers = [
Expand Down

0 comments on commit 6714883

Please sign in to comment.