diff --git a/CHANGELOG.md b/CHANGELOG.md
index ba23ac4..859a26e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog
-## 1.5.0 (unreleased)
+## [1.5.0](https://github.com/AlexisJehan/MvnCheck/releases/tag/v1.5.0) (2024-02-09)
### New features
- Display artifacts with an inherited version in parentheses
diff --git a/README.md b/README.md
index a46f272..cc44247 100644
--- a/README.md
+++ b/README.md
@@ -28,12 +28,12 @@ most relevant update version for an artifact.
2 build file(s) found, checking for artifact updates
my-gradle-project\build.gradle
-[COMPILE ONLY] com.google.guava:guava 31.0-android -> 32.1.3-android
+[COMPILE ONLY] com.google.guava:guava 31.0-android -> 33.0.0-android
1 artifact update(s) available
my-maven-project\pom.xml
[DEPENDENCY] org.apache.commons:commons-lang3 3.10 -> 3.14.0
-[BUILD PLUGIN] org.apache.maven.plugins:maven-compiler-plugin 3.10.0 -> 3.11.0
+[BUILD PLUGIN] org.apache.maven.plugins:maven-compiler-plugin 3.10.0 -> 3.12.1
2 artifact update(s) available
2/2 build file(s) checked, 3 artifact update(s) available
@@ -57,16 +57,16 @@ You can download binaries for the latest version of _MvnCheck_ on the
Execute following commands in the folder where the downloaded archive file is
located:
```console
-sudo tar -xvzf mvn-check-1.4.2-bin.tar.gz --directory /opt
-export PATH=$PATH:/opt/mvn-check-1.4.2/bin
+sudo tar -xvzf mvn-check-1.5.0-bin.tar.gz --directory /opt
+export PATH=$PATH:/opt/mvn-check-1.5.0/bin
```
#### Windows
-Extract the content of the downloaded archive file and move the extracted folder to `C:\mvn-check-1.4.2`, then:
+Extract the content of the downloaded archive file and move the extracted folder to `C:\mvn-check-1.5.0`, then:
- Right-click on the _Windows_ icon and select "System"
- On the right, click on "Advanced system settings"
- In the new window, click on "Environment Variables..."
-- Find the "Path" variable, choose "Edit", and add `;C:\mvn-check-1.4.2\bin` at the end
+- Find the "Path" variable, choose "Edit", and add `;C:\mvn-check-1.5.0\bin` at the end
### Verify
If _MvnCheck_ is correctly installed, this command should work as expected:
@@ -113,6 +113,7 @@ version of a build tool may still be compatible.
| MvnCheck version | Maven version | Gradle version |
|:----------------:|:-------------:|:--------------:|
+| 1.5.0 | 3.9.6 | 8.6 |
| 1.4.2 | 3.9.5 | 8.5 |
| 1.4.1 | 3.9.5 | 8.4 |
| 1.4.0 | 3.9.4 | 8.3 |
diff --git a/pom.xml b/pom.xml
index debdf1a..fb5b214 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.github.alexisjehan
mvn-check
- 1.5.0-SNAPSHOT
+ 1.5.0
MvnCheck
A Java 11+ command line tool to check for artifact updates of Maven and Gradle projects.