diff --git a/CHANGELOG.md b/CHANGELOG.md
index b3ca987..de5c19a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
-## Unreleased
+## [2.5.0] - 2023-06-02
### Added
* Support for relational databases using JDBC.
@@ -229,3 +229,4 @@ can be set with the program argument `--baseIRI`.
[2.4.0]: https://github.com/RMLio/RMLStreamer/compare/v2.3.0...v2.4.0
[2.4.1]: https://github.com/RMLio/RMLStreamer/compare/v2.4.0...v2.4.1
[2.4.2]: https://github.com/RMLio/RMLStreamer/compare/v2.4.1...v2.4.2
+[2.5.0]: https://github.com/RMLio/RMLStreamer/compare/v2.4.2...v2.5.0
diff --git a/README.md b/README.md
index 021d1c4..8a530a2 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ If you go to the directory where your data and mappings are,
you can run something like (change tag to appropriate version):
```
-$ docker run -v $PWD:/data --rm rmlstreamer:2.4.1 toFile -m /data/mapping.ttl -o /data/output.ttl
+$ docker run -v $PWD:/data --rm rmlstreamer:v2.5.0 toFile -m /data/mapping.ttl -o /data/output.ttl
```
There are more options for the script, if you want to use specific tags or push to Docker Hub:
diff --git a/pom.xml b/pom.xml
index b3dfe71..5c276f4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@ SOFTWARE.
io.rml
RMLStreamer
- 2.4.3-SNAPSHOT
+ v2.5.0
jar
RMLStreamer
diff --git a/src/main/scala/io/rml/framework/core/util/ParameterUtil.scala b/src/main/scala/io/rml/framework/core/util/ParameterUtil.scala
index 1297a1c..c836fe3 100644
--- a/src/main/scala/io/rml/framework/core/util/ParameterUtil.scala
+++ b/src/main/scala/io/rml/framework/core/util/ParameterUtil.scala
@@ -85,7 +85,7 @@ object ParameterUtil {
val parser = new scopt.OptionParser[ParameterConfig]("RMLStreamer") {
override def showUsageOnError = Some(true)
- head("RMLStreamer", "2.1.0-SNAPSHOT")
+ head("RMLStreamer", "v2.5.0")
opt[String]('j', "job-name").valueName("")
.optional()