summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/versionhistory.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/versionhistory.rst b/docs/versionhistory.rst
index 293cc0c..5d79ee3 100644
--- a/docs/versionhistory.rst
+++ b/docs/versionhistory.rst
@@ -4,6 +4,23 @@ Version history
To find out how to migrate your application from a previous version of
APScheduler, see the :doc:`migration section <migration>`.
+
+3.0.1
+-----
+
+* A wider variety of target callables can now be scheduled so that the jobs are still serializable
+ (static methods on Python 3.3+, unbound methods on all except Python 3.2)
+
+* Attempting to serialize a non-serializable Job now raises a helpful exception during serialization.
+ Thanks to Jeremy Morgan for pointing this out.
+
+* Fixed table creation with SQLAlchemyJobStore on MySQL/InnoDB
+
+* Fixed start date getting set too far in the future with a timezone different from the local one
+
+* Fixed _run_job_error() being called with the incorrect number of arguments in most executors
+
+
3.0.0
-----