Skip to content

Commit 506a3a3

Browse files
committed
Release 0.6.2.
Fix readthedocs build. Fix a broken CircleCI status badge.
1 parent a4d6054 commit 506a3a3

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
PYTHON_VERSION: "3_6"
217217
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_6
218218
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_6
219-
VERSION: 0.6.1
219+
VERSION: 0.6.2
220220
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
221221
YARN_STATIC_DIR: notebooker/web/static/
222222
IMAGE_NAME: mangroup/notebooker
@@ -232,7 +232,7 @@ jobs:
232232
environment:
233233
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_7
234234
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_7
235-
VERSION: 0.6.1
235+
VERSION: 0.6.2
236236
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
237237
YARN_STATIC_DIR: notebooker/web/static/
238238
IMAGE_NAME: mangroup/notebooker
@@ -246,7 +246,7 @@ jobs:
246246
environment:
247247
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_8
248248
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_8
249-
VERSION: 0.6.1
249+
VERSION: 0.6.2
250250
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
251251
YARN_STATIC_DIR: notebooker/web/static/
252252
IMAGE_NAME: mangroup/notebooker

.readthedocs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,12 @@ version: 2
99
sphinx:
1010
configuration: docs/conf.py
1111

12+
build:
13+
os: ubuntu-22.04
14+
tools:
15+
python: "3.8"
16+
1217
python:
13-
version: 3.6
1418
install:
1519
- method: pip
1620
path: .

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
0.6.2 (2024-05-xx)
1+
0.6.2 (2024-05-02)
22
------------------
3+
* Bugfix: Folders with spaces in their names are now correctly handled in the webapp.
4+
* Chore: Fix readthedocs build and broken CircleCI link.
35
* Chore: Applying & enforcing Black and Prettier to Python and JS code, respectively. Setting Black version to 22.8.0 for CircleCI.
46
* Bugfix: Preserve the "mailfrom" parameter on notebook rerun.
57

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Productionise and schedule your Jupyter Notebooks, just as interactively as you wrote them. Notebooker is a webapp which can execute and parametrise Jupyter Notebooks as soon as they have been committed to git. The results are stored in MongoDB and searchable via the web interface, essentially turning your Jupyter Notebook into a production-style web-based report in a few clicks.
44

55

6-
[![CircleCI](https://circleci.com/gh/man-group/notebooker.svg?style=shield&circle-token=54008697f29eb7713d5f18d73ef785cb5ba858c9)](https://app.circleci.com/pipelines/github/man-group/notebooker)
6+
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/man-group/notebooker/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/man-group/notebooker/tree/master)
77
[![Documentation Status](https://readthedocs.org/projects/notebooker/badge/?version=latest)](https://notebooker.readthedocs.io/en/latest/?badge=latest)
88

99
## Run a Jupyter notebook as a report with parameters

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
author = "Man Group Quant Tech"
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "0.6.1"
26+
release = "0.6.2"
2727

2828

2929
# -- General configuration ---------------------------------------------------

notebooker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.1"
1+
__version__ = "0.6.2"

notebooker/web/static/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "notebooker",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "Notebooker - Turn notebooks into reports",
55
"dependencies": {
66
"bootstrap-table": "1.20.2",

0 commit comments

Comments
 (0)