Skip to content

Commit

Permalink
Version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tpt committed Jan 7, 2020
1 parent d4e3ed0 commit 35f3618
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.4.0] - 2020-01-07
- Adds "generalized" RDF support and generalized Trig parser behind a "generalized" feature flag.
- Allows to recover NTriples and NQuads parser errors, the parser jumps to the next line if the current line parsing fail.
- Makes `Iri` parser do the full IRI validation.

## [0.3.1] - 2019-09-02

### Added
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rio_api"
version = "0.3.1"
version = "0.4.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "Apache-2.0"
readme = "../README.md"
Expand Down
6 changes: 3 additions & 3 deletions testsuite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ edition = "2018"
publish = false

[dependencies]
rio_api = "0.3"
rio_turtle = "0.3"
rio_xml = "0.3"
rio_api = "0.4"
rio_turtle = "0.4"
rio_xml = "0.4"
chrono = "0.4"
permutohedron = "0.2"

Expand Down
4 changes: 2 additions & 2 deletions turtle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rio_turtle"
version = "0.3.0"
version = "0.4.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "Apache-2.0"
readme = "../README.md"
Expand All @@ -12,7 +12,7 @@ RDF Turtle, Trig, N-Triples and N-Quads parsers and serializers
edition = "2018"

[dependencies]
rio_api = "0.3"
rio_api = "0.4"

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions xml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rio_xml"
version = "0.3.0"
version = "0.4.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "Apache-2.0"
readme = "../README.md"
Expand All @@ -12,5 +12,5 @@ RDF/XML parser and serializer
edition = "2018"

[dependencies]
rio_api = "0.3"
rio_api = "0.4"
quick-xml = "0.17"

0 comments on commit 35f3618

Please sign in to comment.