diff --git a/doc/source/conf.py b/doc/source/conf.py index 367b339..86bc712 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -51,9 +51,9 @@ copyright = u'2015, John Miller' # built documents. # # The short X.Y version. -version = '0.9' +version = '0.11' # The full version, including alpha/beta/rc tags. -release = '0.9.1' +release = '0.11' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/source/index.rst b/doc/source/index.rst index 0a2c720..7a4103a 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -566,6 +566,11 @@ everything the log buffer. You can reset the patch and log level with Change Log ========== +v0.11.0 +------- + +* Add support for creating and restoring checkpoints on the Jupyter server. + v0.10.0 ------- diff --git a/lisp/ein-core.el b/lisp/ein-core.el index 255e3a1..9178782 100644 --- a/lisp/ein-core.el +++ b/lisp/ein-core.el @@ -43,7 +43,7 @@ :group 'applications :prefix "ein:") -(defvar ein:version "0.10.1" +(defvar ein:version "0.11.0" "Version number for Emacs IPython Notebook (EIN).") diff --git a/lisp/ein.el b/lisp/ein.el index 2cf66fe..884453a 100644 --- a/lisp/ein.el +++ b/lisp/ein.el @@ -5,7 +5,7 @@ ;; Author: John Miller , Takafumi Arakaki ;; URL: http://millejoh.github.io/emacs-ipython-notebook/ ;; Keywords: applications, tools -;; Version: 0.10.1 +;; Version: 0.11.0 ;; This file is NOT part of GNU Emacs.