mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
Prepare for version bump.
This commit is contained in:
parent
08a021781f
commit
a20562e1fc
7 changed files with 13 additions and 9 deletions
2
Cask
2
Cask
|
@ -1,7 +1,7 @@
|
|||
(source gnu)
|
||||
(source melpa)
|
||||
|
||||
(package "ein" "0.13.0" "Emacs IPython Notebook.")
|
||||
(package "ein" "0.13.1" "Emacs IPython Notebook.")
|
||||
(package-file "lisp/ein.el")
|
||||
(files ("lisp/*.el" "lisp/*.py" :exclude ("lisp/zeroein.el")))
|
||||
|
||||
|
|
|
@ -1,10 +1,13 @@
|
|||
.. _changelog_0_14_0:
|
||||
.. _changelog_0_13_1:
|
||||
|
||||
|
||||
v0.14.0
|
||||
v0.13.1
|
||||
-------
|
||||
|
||||
* Notebooklist entries are now orderd by file extension.
|
||||
* Org edit buffers for ein source blocks now try to connect to the notebook
|
||||
specified in the session parameter. This is essentially like calling
|
||||
`ein:connect-to-notebook` on the org source edit buffer.
|
||||
``ein:connect-to-notebook`` on the org source edit buffer.
|
||||
* Fixes and improved stability for completion using company backend.
|
||||
* More attempts to get ein to pass tests on Travis.
|
||||
* A more stable ``ein:jupyter-server-start``.
|
||||
|
|
|
@ -53,7 +53,7 @@ copyright = u'2017, John Miller'
|
|||
# The short X.Y version.
|
||||
version = '0.13'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.13.0'
|
||||
release = '0.13.1'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
@ -89,7 +89,7 @@ available after emacs starts, try adding the following to your emacs init file:
|
|||
Requirements
|
||||
------------
|
||||
|
||||
* EMACS 24.5, 25.2, or 26
|
||||
* EMACS 24.5, 25.3, or 26
|
||||
* IPython_ 2.0 or higher.
|
||||
* Tornado_ 4.0.2 or higher.
|
||||
* `websocket.el`_ >= 1.7
|
||||
|
@ -662,6 +662,7 @@ everything the log buffer. You can reset the patch and log level with
|
|||
Change Log
|
||||
==========
|
||||
|
||||
.. include:: CHangelog/v0_13_1.txt
|
||||
|
||||
.. include:: Changelog/v0_13_0.txt
|
||||
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
:group 'applications
|
||||
:prefix "ein:")
|
||||
|
||||
(defvar ein:version "0.13.0"
|
||||
(defvar ein:version "0.13.1"
|
||||
"Version number for Emacs IPython Notebook (EIN).")
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
(define-package "ein"
|
||||
"0.13.0"
|
||||
"0.13.1"
|
||||
"Emacs IPython Notebook"
|
||||
'((websocket "1.7")
|
||||
(auto-complete "1.4.0")
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
;; Author: John Miller <millejoh at millejoh.com>, Takafumi Arakaki <aka.tkf at gmail.com>
|
||||
;; URL: http://millejoh.github.io/emacs-ipython-notebook/
|
||||
;; Keywords: applications, tools
|
||||
;; Version: 0.13.0
|
||||
;; Version: 0.13.1
|
||||
|
||||
;; This file is NOT part of GNU Emacs.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue