From e86ccb62709c541ab827090265d8abc991a3c041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=CC=88zgu=CC=88r=20Akgu=CC=88n?= Date: Tue, 11 Apr 2023 21:24:22 +0100 Subject: [PATCH] Updating version information to v0.0.5 --- README.md | 18 +++++++++--------- scripts/install-colab.sh | 2 +- setup.py | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 23b5706..b79a3d9 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ 1. Create a new notebook on Google Colab 2. Run the following command (2 lines) in a Code cell to install this extension. - !source <(curl -s https://raw.githubusercontent.com/conjure-cp/conjure-notebook/v0.0.4/scripts/install-colab.sh) + !source <(curl -s https://raw.githubusercontent.com/conjure-cp/conjure-notebook/v0.0.5/scripts/install-colab.sh) %load_ext conjure 3. In the following Code cells Conjure commands will be available. @@ -20,12 +20,12 @@ You do not have to use Google Colab to use Conjure Notebook. Currently we do not This section is mainly for the benefit of the project maintainers. -- Edit the version in the README.md example (this file!) -- Edit the version in setup.py -- Edit the version in scripts/install-colab.sh +- Edit the version in the `README.md` example (this file!) +- Edit the version in `setup.py` +- Edit the version in `scripts/install-colab.sh` (the `NOTEBOOK_VERSION` variable) - Create a tag, push to main, push the tag: - - git commit README.md setup.py scripts/install-colab.sh -m "Updating version information to v3.1.4" - - git tag -a v3.1.4 -m "release v3.1.4" - - git push origin main --tags -- (Optionally) edit the version in scripts/install-colab.sh to "main" so it tracks the latest commit, and push. - - git commit scripts/install-colab.sh -m "install latest version on main when called from the main branch" + - `git commit README.md setup.py scripts/install-colab.sh -m "Updating version information to v3.1.4"` + - `git tag -a v3.1.4 -m "release v3.1.4"` + - `git push origin main --tags` +- Post release: Edit the version in `scripts/install-colab.sh` (the `NOTEBOOK_VERSION` variable) to "main" so it tracks the latest commit, and push. + - `git commit scripts/install-colab.sh -m "install latest version on main when called from the main branch"` diff --git a/scripts/install-colab.sh b/scripts/install-colab.sh index e91f938..94f89fa 100755 --- a/scripts/install-colab.sh +++ b/scripts/install-colab.sh @@ -1,7 +1,7 @@ #!/bin/bash CONJURE_VERSION=v2.4.0 -NOTEBOOK_VERSION=main +NOTEBOOK_VERSION=v0.0.5 echo "Installing Conjure version ${CONJURE_VERSION} and Conjure Notebook version ${NOTEBOOK_VERSION}..." diff --git a/setup.py b/setup.py index 59fd151..f11474e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="Conjure Notebook", - version="v0.0.4", + version="v0.0.5", author="Ogabek Yusupov, Özgür Akgün, Chris Jefferson", author_email="ogabekyusupov@gmail.com, ozgur.akgun@st-andrews.ac.uk, caj21@st-andrews.ac.uk", description="A Jupyter notebook extension for the automated constraint modelling tool Conjure",