Skip to content

Commit 12eb028

Browse files
author
Matt George
committed
Merge branch 'release/1.1'
2 parents 086129a + 2444fa3 commit 12eb028

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

AUTHORS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
* Alex Ezell
77
* Michael Russo
88
* Whit Morris
9+
* Joe Shaw
910

10-
Inspired by Resque, by Chris Wanstrath
11+
Inspired by Resque, by Chris Wanstrath

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##1.1 (2011-06-16)
2+
* api change based on redis-py
3+
* setproctitle requirements fix
4+
* change exception logging in worker
5+
16
##1.0.1 (2011-04-12)
27
* fixed bug with tempaltes and media in resweb
38
* call to redis-py disconnect was failing, switched to connection.disconnect

pyres/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.0.1'
1+
__version__ = '1.1'
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='1.0.1'
3+
version='1.1'
44

55
setup(
66
name='pyres',
@@ -27,7 +27,7 @@
2727
'itty>=0.6.2',
2828
'redis>=1.34.1',
2929
'pystache>=0.1.0',
30-
'setproctitle==1.0'
30+
'setproctitle>=1.0'
3131
],
3232
classifiers = [
3333
'Development Status :: 4 - Beta',

0 commit comments

Comments
 (0)