Skip to content

Commit

Permalink
prepare for v2.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ghsnd committed Jun 2, 2023
1 parent d099da2 commit 4674b0a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SOFTWARE.

<groupId>io.rml</groupId>
<artifactId>RMLStreamer</artifactId>
<version>2.4.3-SNAPSHOT</version>
<version>v2.5.0</version>
<packaging>jar</packaging>

<name>RMLStreamer</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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("<job name>")
.optional()
Expand Down

0 comments on commit 4674b0a

Please sign in to comment.