Skip to content

Commit

Permalink
Prepare for v1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ghsnd committed Oct 30, 2023
1 parent dc40d10 commit ef17c47
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
4 changes: 3 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](https://keepachangelog.com/en/1.1.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [1.0.0] - 2023-10-30

### Added
- Prepare for publishing on the Maven central repository.
Expand Down Expand Up @@ -42,3 +42,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated apache-any23-encoding to 2.7
- Updated excel-streaming-reader to 4.0.5
- Updated jena-fuseki-* to 4.9.0

[1.0.0]: https://github.com/RMLio/dataio/releases/tag/v1.0.0
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ The DataIO library opens the given files and allows to read them using an Iterat
This library doesn't load the full file in memory (this is not the case for XML and ODS files).

## Setup
The easiest is to include DataIO as a maven dependency:

```xml
<dependency>
<groupId>be.ugent.idlab.knows</groupId>
<artifactId>dataio</artifactId>
<version>v1.0.0</version>
</dependency>
```
Check the [maven central repository](https://central.sonatype.com/search?q=be.ugent.idlab.knows&namespace=be.ugent.idlab.knows&name=dataio)
for the latest version.

Or if you want to build & install locally:

Run the following command:

mvn install
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>be.ugent.idlab.knows</groupId>
<artifactId>dataio</artifactId>
<version>v0.1.3-SNAPSHOT</version>
<version>1.0.0</version>
<name>dataio</name>
<packaging>jar</packaging>
<url>https://github.com/RMLio/dataio</url>
Expand Down

0 comments on commit ef17c47

Please sign in to comment.