summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.rst10
-rw-r--r--apscheduler/__init__.py2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 8a9f644..b3172a6 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -4,6 +4,16 @@ Version history
To find out how to migrate your application from a previous version of
APScheduler, see the :doc:`migration section <migration>`.
+2.0.2
+-----
+
+* Removed the unique constraint from the "name" column in the SQLAlchemy
+ job store
+
+* Fixed output from Scheduler.print_jobs() which did not previously output
+ a line ending at the end
+
+
2.0.1
-----
diff --git a/apscheduler/__init__.py b/apscheduler/__init__.py
index 56614a7..a55959f 100644
--- a/apscheduler/__init__.py
+++ b/apscheduler/__init__.py
@@ -1,3 +1,3 @@
-version_info = (2, 0, 1)
+version_info = (2, 0, 2)
version = '.'.join(str(n) for n in version_info[:3])
release = version + ''.join(str(n) for n in version_info[3:])