Skip to content

Commit 6714883

Browse files
author
Matt George
committed
updated version number and changelog
1 parent 3c3fca9 commit 6714883

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

HISTORY.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 0.7.0 (2010-03-05)
2+
* delayed tasks
3+
* resweb pagination
4+
* switch stored timestamps to a unix timestamp
5+
* updated documentation
6+
* upgraded to redis-py 1.34.1
7+
* switched from print statements to the logging module
8+
* import errors on jobs are now reported in the failed queue
9+
* prune dead workers
10+
* small bugfixes in the resweb package
11+
* improved failure formatting
12+
* datetime json parser
13+
114
## 0.5.0 (2010-0114)
215

316
* added new documentation to the project

README.markdown

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,4 @@ The archive can be found at <http://librelist.com/browser/>.
3737

3838
Stabalize the api.
3939

40-
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.
41-
42-
Better test coverage.
43-
44-
Better documentation.
40+
Add a pre-fork worker module

pyres/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.5.0'
1+
__version__ = '0.7.0'
22

33
from redis import Redis
44
import pyres.json_parser as json

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version='0.5.0'
3+
version='0.7.0'
44
setup(
55
name='pyres',
66
version=version,
@@ -18,7 +18,7 @@
1818
install_requires=[
1919
'simplejson>=2.0.9',
2020
'itty>=0.6.2',
21-
'redis>=0.6.0',
21+
'redis==1.34.1',
2222
'pystache>=0.1.0'
2323
],
2424
classifiers = [

0 commit comments

Comments
 (0)