Skip to content

Commit

Permalink
Changed version number to 1.3, added changelog entries
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed May 19, 2010
1 parent 7a30e4a commit b53f1ec
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
21 changes: 20 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,30 @@
Version history
===============

1.3
---

* Added __repr__() implementations to expressions, fields, triggers, and jobs
to help with debugging

* Added the dump_jobs method on Scheduler, which gives a helpful listing of
all jobs scheduled on it

* Fixed positional weekday (3th fri etc.) expressions not working except in
some edge cases (fixes #2)

* Removed autogenerated API documentation for modules which are not part of
the public API, as it might confuse some users

.. Note:: Positional weekdays are now used with the **day** field, not
**weekday**.


1.2.1
-----

* Fixed regression: add_cron_job() in Scheduler was creating a CronTrigger with
the wrong parameters
the wrong parameters (fixes #1, #3)

* Fixed: if the scheduler is restarted, clear the "stopped" flag to allow
jobs to be scheduled again
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
# built documents.
#
# The short X.Y version.
version = '1.2.1'
version = '1.3'
# The full version, including alpha/beta/rc tags.
release = '1.2.1'
release = '1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='APScheduler',
version='1.2.1',
version='1.3',
description='In-process task scheduler with Cron-like capabilities',
long_description=open('README.txt').read(),
author='Alex Gronholm',
Expand Down

0 comments on commit b53f1ec

Please sign in to comment.