Skip to content

Commit

Permalink
Updating version information to v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ozgurakgun committed Apr 11, 2023
1 parent 4f2cb92 commit e86ccb6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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"`
2 changes: 1 addition & 1 deletion scripts/install-colab.sh
Original file line number Diff line number Diff line change
@@ -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}..."

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected], [email protected], [email protected]",
description="A Jupyter notebook extension for the automated constraint modelling tool Conjure",
Expand Down

0 comments on commit e86ccb6

Please sign in to comment.