diff --git a/CHANGELOG.md b/CHANGELOG.md
index 66c457dd5d41c97d7f1a69808b14bf26197cf482..4779833524da25e9b835c524905551154f5a1b2d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
 # Changelog
 
-## [(next version)](./README.md#for-developers)
+## [1.1.0](https://www3.hhu.de/stups/downloads/prob2-jupyter/prob2-jupyter-kernel-1.1.0-all.jar)
 
 * Added a `--user` flag to the installer to allow installing the kernel into the user home directory. This allows installing the kernel without `sudo` when not using a virtual environment.
 * Added `:let` and `:unlet` commands to (un)define local variables.
diff --git a/README.md b/README.md
index 9987bbd66d4bbabb892fb87fb6ae3494d0eb3d5e..2463ce4bd905dc47b6a0921d04266f1a14155370 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ This is a [Jupyter](https://jupyter.org/) kernel for the [ProB animator and mode
 
 ### For end users
 
-1. Download the latest version of the kernel [here](https://www3.hhu.de/stups/downloads/prob2-jupyter/prob2-jupyter-kernel-1.0.0-all.jar).
+1. Download the latest version of the kernel [here](https://www3.hhu.de/stups/downloads/prob2-jupyter/prob2-jupyter-kernel-1.1.0-all.jar).
 2. If Jupyter is installed in a virtual environment, activate it.
 3. 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).
diff --git a/build.gradle b/build.gradle
index ba74165078c48559b58433b3165239b2df284e9d..e148d119b64f8471793fb63cfcfe2817bf28282d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,7 +9,7 @@ plugins {
 	id("com.github.johnrengelman.shadow").version("5.2.0")
 }
 
-version = "1.0.1-SNAPSHOT"
+version = "1.1.0"
 
 final isSnapshot = project.version.endsWith("-SNAPSHOT")