diff --git a/.circleci/config.yml b/.circleci/config.yml index d345d37b..117c8f17 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -164,7 +164,7 @@ jobs: PYTHON_VERSION: "3_6" CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_6 CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_6 - VERSION: 0.2.0 + VERSION: 0.2.1 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases YARN_STATIC_DIR: notebooker/web/static/ IMAGE_NAME: mangroup/notebooker @@ -176,7 +176,7 @@ jobs: environment: CIRCLE_ARTIFACTS: /tmp/circleci-artifacts/3_7 CIRCLE_TEST_REPORTS: /tmp/circleci-test-results/3_7 - VERSION: 0.2.0 + VERSION: 0.2.1 PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases YARN_STATIC_DIR: notebooker/web/static/ IMAGE_NAME: mangroup/notebooker diff --git a/CHANGELOG.md b/CHANGELOG.md index e122e3ec..9f2e693a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ -0.2.1 (????-??-??) +0.2.1 (2021-02-11) ------------------ -No changes (yet!) + +* Bugfix: `notebooker_execute` entrypoint should now work as intended +* Bugfix: Sanity and template regression tests should now work as intended +* Improvement: Specifying a git repo should be a little simpler 0.2.0 (2020-12-17) diff --git a/docs/conf.py b/docs/conf.py index eb280797..af0ddffa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "Man Group Quant Tech" # The full version, including alpha/beta/rc tags -release = "0.2.0" +release = "0.2.1" # -- General configuration --------------------------------------------------- diff --git a/notebooker/_version.py b/notebooker/_version.py index d3ec452c..3ced3581 100644 --- a/notebooker/_version.py +++ b/notebooker/_version.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.2.1" diff --git a/notebooker/web/static/package.json b/notebooker/web/static/package.json index 9cfd3339..635f064c 100644 --- a/notebooker/web/static/package.json +++ b/notebooker/web/static/package.json @@ -1,6 +1,6 @@ { "name": "notebooker", - "version": "0.2.0", + "version": "0.2.1", "description": "Notebooker - Turn notebooks into reports", "dependencies": { "bootstrap-table": "1.15.3",