From 5092a354256527ba1d7ace7a402399907c634f21 Mon Sep 17 00:00:00 2001 From: dgelessus <dgelessus@users.noreply.github.com> Date: Tue, 25 Apr 2023 13:42:34 +0200 Subject: [PATCH] Release version 1.4.0 --- CHANGELOG.md | 4 ++++ README.md | 11 ++--------- build.gradle | 2 +- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02703e6..832b3a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [(next version)](https://gitlab.cs.uni-duesseldorf.de/api/v4/projects/848/jobs/artifacts/master/raw/build/libs/prob2-jupyter-kernel-1.3.1-SNAPSHOT-all.jar?job=test) +* (no changes yet) + +## [1.4.0](https://stups.hhu-hosting.de/downloads/prob2-jupyter/prob2-jupyter-kernel-1.4.0-all.jar) + * Updated to ProB 1.12.0 (ProB Java API version 4.12.0). * Added position information to formula evaluation errors (e. g. type or well-definedness errors). * Changed `:exec` and `:init` to automatically set up constants and initialize the machine if necessary. Previously this caused an error "Machine is not initialised". diff --git a/README.md b/README.md index 6b65638..05b8428 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This is a [Jupyter](https://jupyter.org/) kernel for the [ProB animator and mode ## Downloads -* **[Download the latest version of the ProB2 Jupyter kernel here](https://stups.hhu-hosting.de/downloads/prob2-jupyter/prob2-jupyter-kernel-1.3.0-all.jar).** +* **[Download the latest version of the ProB2 Jupyter kernel here](https://stups.hhu-hosting.de/downloads/prob2-jupyter/prob2-jupyter-kernel-1.4.0-all.jar).** * Download links for previous versions can be found in the [changelog]. * A [snapshot build](https://gitlab.cs.uni-duesseldorf.de/api/v4/projects/848/jobs/artifacts/master/raw/build/libs/prob2-jupyter-kernel-1.3.1-SNAPSHOT-all.jar?job=test) of the latest development version is also available. **Warning:** this is an unstable version that can contain bugs or breaking changes. @@ -31,17 +31,10 @@ See the [requirements](#requirements) and [installation instructions](#installat 1. Ensure that all [requirements](#requirements) are installed. 2. [Download the latest version of the kernel](#downloads). 3. If Jupyter is installed in a virtual environment, activate it. -4. Run `java -jar <jarfile> install` to install the kernel. (`<jarfile>` is the name of the jar file that you just downloaded.) - * If you get a permission error when installing the kernel spec, add the option `--user` after `install`. This will install the kernel spec into your user home instead of the Python install directory (which may not be writable). - * This assumes that Jupyter can be called using the command `jupyter`. To use a different command in place of `jupyter`, pass it as an argument after `install`, e. g. `java -jar <jarfile> install /path/to/jupyter`. - * To use a different ProB home directory than the default, pass `-Dprob.home=/path/to/prob/home` before the `-jar` option. (The path must be absolute.) -5. (Optional) The jar file can be deleted after installation. -<!-- -New instructions once the next version is released: 4. Run `python3 <jarfile> install` to install the kernel. (`<jarfile>` is the name of the jar file that you just downloaded. Yes, you need to run the jar file using Python.) * If you get a permission error when installing the kernel spec, add the option `--user` after `install`. This will install the kernel spec into your user home instead of the Python install directory (which may not be writable). * To use a different ProB home directory than the default, set the environment variable `PROB_HOME` to the desired path. (The path must be absolute.) ---> +5. (Optional) The jar file can be deleted after installation. ### For developers diff --git a/build.gradle b/build.gradle index 9ae0861..2afaab1 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { id("com.github.johnrengelman.shadow").version("7.1.2") } -version = "1.3.1-SNAPSHOT" +version = "1.4.0" final isSnapshot = project.version.endsWith("-SNAPSHOT") -- GitLab