Skip to content

Commit

Permalink
Bump version to 0.6.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
selwin committed May 6, 2016
1 parent 6ad0b3c commit f73dc1a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,13 @@ same names but with a prefix of ``RQ_REDIS_``.
Changelog
=========

Version 0.6.1
-------------
* Added `scheduler.count()`. Thanks @smaccona!
* `scheduler.get_jobs()` now supports pagination. Thanks @smaccona!
* Better `ttl` and `result_ttl` defaults for jobs created by `scheduler.cron`. Thanks @csaba-stylight and @lechup!


Version 0.6.0
-------------
* Added `scheduler.cron()` capability. Thanks @petervtzand!
Expand Down
2 changes: 1 addition & 1 deletion rq_scheduler/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 6, 0)
VERSION = (0, 6, 1)

from .scheduler import Scheduler
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='rq-scheduler',
version='0.6.0',
version='0.6.1',
author='Selwin Ong',
author_email='selwin.ong@gmail.com',
packages=['rq_scheduler'],
Expand All @@ -26,7 +26,7 @@
tests_require=tests_require,
install_requires=['rq>=0.3.5', 'croniter>=0.3.9'] + tests_require,
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit f73dc1a

Please sign in to comment.