Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b73432f

Browse files
authoredFeb 22, 2023
Merge pull request #140 from man-group/release-0.5.1
Release 0.5.1 and update docs with some version-specific info.
2 parents fdcc648 + 6d9f331 commit b73432f

File tree

6 files changed

+17
-7
lines changed

6 files changed

+17
-7
lines changed
 

‎.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ jobs:
192192
PYTHON_VERSION: "3_6"
193193
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_6
194194
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_6
195-
VERSION: 0.5.0
195+
VERSION: 0.5.1
196196
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
197197
YARN_STATIC_DIR: notebooker/web/static/
198198
IMAGE_NAME: mangroup/notebooker
@@ -204,7 +204,7 @@ jobs:
204204
environment:
205205
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_7
206206
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_7
207-
VERSION: 0.5.0
207+
VERSION: 0.5.1
208208
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
209209
YARN_STATIC_DIR: notebooker/web/static/
210210
IMAGE_NAME: mangroup/notebooker
@@ -216,7 +216,7 @@ jobs:
216216
environment:
217217
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_8
218218
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_8
219-
VERSION: 0.5.0
219+
VERSION: 0.5.1
220220
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
221221
YARN_STATIC_DIR: notebooker/web/static/
222222
IMAGE_NAME: mangroup/notebooker

‎CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
0.5.1 (2023-02-??)
1+
0.5.1 (2023-02-22)
22
------------------
33

44
* Feature: A new `--readonly-mode` is available for the webapp. This allows users to have an instance of Notebooker which only displays the results of externally-run or scheduler-run reports. See [the docs](https://notebooker.readthedocs.io/en/latest/webapp/webapp.html#read-only-mode) for more details.
55
* Bugfix: Scheduler-executed reports will now correctly record stdout.
6+
* Bugfix: Pull from current upstream instead of hard-coded origin/master in git backend of webapp.
7+
* Bugfix: Ensure that the hide_code option is consistent when a rerun is executed via the webapp.
68

79
0.5.0 (2023-01-19)
810
------------------

‎docs/conf.py

+1-1
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.5.0"
26+
release = "0.5.1"
2727

2828

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

‎docs/webapp/webapp.rst

+8
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ the stdout from the run via a modal by clicking the "View Stdout" button on this
9292

9393
Scheduling a report
9494
-------------------
95+
96+
.. note::
97+
Available from version 0.3.0 onwards.
98+
9599
Once you are happy with your report, you can choose to schedule the report within the Notebooker webapp.
96100
Setting up a schedule is relatively simple, and it begins in the Scheduler tab.
97101

@@ -158,6 +162,10 @@ The webapp itself is configured via the command line notebooker-cli:
158162

159163
Read-only mode
160164
--------------
165+
166+
.. note::
167+
Available from version 0.5.1 onwards.
168+
161169
There exists a read-only mode (add :code:`--readonly-mode` to command line arguments) in the
162170
Notebooker webapp which will disable the ability to run new,
163171
rerun, or delete existing reports. This mode is useful in situations where you would like Notebooker

‎notebooker/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.5.0"
1+
__version__ = "0.5.1"

‎notebooker/web/static/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "notebooker",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Notebooker - Turn notebooks into reports",
55
"dependencies": {
66
"bootstrap-table": "1.20.2",

0 commit comments

Comments
 (0)
Please sign in to comment.