Skip to content

Commit

Permalink
Merge pull request #140 from man-group/release-0.5.1
Browse files Browse the repository at this point in the history
Release 0.5.1 and update docs with some version-specific info.
  • Loading branch information
jonbannister authored Feb 22, 2023
2 parents fdcc648 + 6d9f331 commit b73432f
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
PYTHON_VERSION: "3_6"
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_6
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_6
VERSION: 0.5.0
VERSION: 0.5.1
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
YARN_STATIC_DIR: notebooker/web/static/
IMAGE_NAME: mangroup/notebooker
Expand All @@ -204,7 +204,7 @@ jobs:
environment:
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_7
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_7
VERSION: 0.5.0
VERSION: 0.5.1
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
YARN_STATIC_DIR: notebooker/web/static/
IMAGE_NAME: mangroup/notebooker
Expand All @@ -216,7 +216,7 @@ jobs:
environment:
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_8
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_8
VERSION: 0.5.0
VERSION: 0.5.1
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
YARN_STATIC_DIR: notebooker/web/static/
IMAGE_NAME: mangroup/notebooker
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
0.5.1 (2023-02-??)
0.5.1 (2023-02-22)
------------------

* 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.
* Bugfix: Scheduler-executed reports will now correctly record stdout.
* Bugfix: Pull from current upstream instead of hard-coded origin/master in git backend of webapp.
* Bugfix: Ensure that the hide_code option is consistent when a rerun is executed via the webapp.

0.5.0 (2023-01-19)
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Man Group Quant Tech"

# The full version, including alpha/beta/rc tags
release = "0.5.0"
release = "0.5.1"


# -- General configuration ---------------------------------------------------
Expand Down
8 changes: 8 additions & 0 deletions docs/webapp/webapp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ the stdout from the run via a modal by clicking the "View Stdout" button on this

Scheduling a report
-------------------

.. note::
Available from version 0.3.0 onwards.

Once you are happy with your report, you can choose to schedule the report within the Notebooker webapp.
Setting up a schedule is relatively simple, and it begins in the Scheduler tab.

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

Read-only mode
--------------

.. note::
Available from version 0.5.1 onwards.

There exists a read-only mode (add :code:`--readonly-mode` to command line arguments) in the
Notebooker webapp which will disable the ability to run new,
rerun, or delete existing reports. This mode is useful in situations where you would like Notebooker
Expand Down
2 changes: 1 addition & 1 deletion notebooker/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.5.1"
2 changes: 1 addition & 1 deletion notebooker/web/static/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "notebooker",
"version": "0.5.0",
"version": "0.5.1",
"description": "Notebooker - Turn notebooks into reports",
"dependencies": {
"bootstrap-table": "1.20.2",
Expand Down

0 comments on commit b73432f

Please sign in to comment.