Skip to content

Commit 2059d79

Browse files
committed
v1.0
1 parent c4ac2a4 commit 2059d79

File tree

4 files changed

+40
-5
lines changed

4 files changed

+40
-5
lines changed

CHANGELOG.org

+36-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,39 @@
1-
* master
1+
* v1.0
2+
3+
- The results of executing named Jupyter source blocks can now be
4+
referenced by other source blocks. In other words, referencing a
5+
Jupyter block in the context of noweb expansion, using =org-sbe=, or
6+
as the value of a source block variable works now.
7+
8+
- Added the customizable variable =jupyter-org-auto-connect= which
9+
determines if a session should automatically be connected to upon
10+
the first insertion into a source block's region.
11+
12+
- The Jupyter executable used by underlying calls to =jupyter-command=
13+
may now be set using the variable =jupyter-executable=.
14+
15+
- Virtual environments are supported. If the =VIRTUAL_ENV= environment
16+
variable is set, then the available kernels to launch will be those
17+
under the virtual environment assuming your =exec-path= is set
18+
correctly to contain the Jupyter executable under the virtual
19+
environment. See for
20+
example https://github.com/jorgenschaefer/pyvenv.
21+
22+
- Added =org-babel-jupyter-language-aliases= which allows you to change
23+
the name of the Org source block for a particular kernel language.
24+
Usually the name of the source block is jupyter-LANG where LANG is
25+
the name of the kernel language. This variable allows you to
26+
specify something else for LANG.
27+
28+
- Added the =jupyter-use-zmq= variable which determines whether or
29+
not =zmq= based connections are available for use. If this variable
30+
is =nil= then only server based connections can be used and in some
31+
instances a default notebook server is started to manage those
32+
connections, e.g. when calling =jupyter-run-repl=.
33+
34+
* v0.8.3
35+
36+
- Additional bug fixes.
237

338
- Fixed a regression that appears when executing an =org-mode= source
439
block of a previously created session. A new connection to the

MAINTAINERS.org

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ changes, etc. Write a few sentences describing the change and how it affects
66
users going forward.
77

88
#+NAME: changelog
9-
#+HEADER: :var PREV_VERSION="v0.8.2" VERSION="master"
9+
#+HEADER: :var PREV_VERSION="v1.0" VERSION="master"
1010
#+BEGIN_SRC shell :results output
1111
git log --pretty=format:"%s" ${PREV_VERSION}...${VERSION}
1212
#+END_SRC
@@ -19,7 +19,7 @@ git log --pretty=format:"%s" ${PREV_VERSION}...${VERSION}
1919
- Set the Version header
2020
- Set =jupyter-version= in file:jupyter-base.el
2121

22-
#+CALL: update-project-metadata(version="0.8.2")
22+
#+CALL: update-project-metadata(version="1.0")
2323

2424
#+NAME: source-files
2525
#+begin_src shell

jupyter-base.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ FORMAT-STRING and ARGS have the same meaning as in `message'."
146146
A longer timeout is needed, for example, when retrieving the
147147
`jupyter-kernel-info' to allow for the kernel to startup.")
148148

149-
(defconst jupyter-version "0.8.2-dev"
149+
(defconst jupyter-version "1.0"
150150
"Current version of Jupyter.")
151151

152152
;;; Macros

jupyter.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: Nathaniel Nicandro <[email protected]>
66
;; Created: 11 Jan 2018
7-
;; Version: 0.8.2
7+
;; Version: 1.0
88
;; Package-Requires: ((emacs "26") (cl-lib "0.5") (org "9.1.6") (zmq "0.10.10") (simple-httpd "1.5.0") (websocket "1.9"))
99
;; URL: https://github.com/emacs-jupyter/jupyter
1010

0 commit comments

Comments
 (0)