Skip to content

Commit e34c050

Browse files
author
Matt George
committed
moving to version 0.9.1
1 parent ff25b6b commit e34c050

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

AUTHORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
* dsc
66
* Alex Ezell
77
* Michael Russo
8+
* Whit Morris
89

910
Inspired by Resque, by Chris Wanstrath

HISTORY.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.9.1 (2010-10-15)
2+
* fixing issues #45, #46.
3+
* #45 - resweb not working in chrome
4+
* #46 - delayed_queue_schedule_size() returns incorrect value
5+
* updated version requirement for redis-py
6+
* added Failure docs from Alex._
7+
8+
## 0.9 (2010-08-05)
9+
* added better logging to the project
10+
111
## 0.8 (2010-04-24)
212
* added the pyres_manager and the horde module. This allows a more prefork like model for processing jobs.
313
* setproctitle usage. Allows better process titles when viewing via ps

pyres/__init__.py

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

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

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
simplejson==2.0.9
22
itty==0.6.2
3-
redis==1.34.1
3+
redis>=1.34.1
44
pystache==0.1.0
55
setproctitle==1.0

setup.py

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

3-
version='0.9'
3+
version='0.9.1'
44
setup(
55
name='pyres',
66
version=version,

0 commit comments

Comments
 (0)