diff --git a/CHANGELOG.md b/CHANGELOG.md index 6457bc7..307fc78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog + +## [0.6.2] - 2022-01-11 + +## Added +- Support of [oxiri](https://github.com/oxigraph/oxiri) 0.2. + +## Changed +- The parsers now crashes before a possible stack overflow error when ready too many nested anonymous blank nodes, collections or RDF-star nested triples. + + ## [0.6.1] - 2021-07-28 ## Added @@ -8,6 +18,7 @@ ## Changed - The Turtle/TriG parsers now enforce that named blank node identifiers do not collide with the identifiers auto generated by Rio. + ## [0.6.0] - 2021-07-01 ## Added @@ -21,6 +32,7 @@ - `Triple` and `Quad` formatting do not output training dot. - RDF/XML parser keeps spaces at the beginning and the end of parsed values (literals...). + ## [0.5.3] - 2021-03-10 ### Changed diff --git a/api/Cargo.toml b/api/Cargo.toml index b2c5158..1f76a05 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rio_api" -version = "0.6.1" +version = "0.6.2" authors = ["Tpt ", "Pierre-Antoine Champin "] license = "Apache-2.0" readme = "../README.md" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 60494eb..8fa94f1 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rio_testsuite" -version = "0.6.1" +version = "0.6.2" authors = ["Tpt "] license = "Apache-2.0" readme = "../README.md" diff --git a/testsuite/rdf-star b/testsuite/rdf-star index c086bb3..cb3c883 160000 --- a/testsuite/rdf-star +++ b/testsuite/rdf-star @@ -1 +1 @@ -Subproject commit c086bb3aea74368590d5900f3b8ba5572ddedb35 +Subproject commit cb3c883438986dccc37ace3a424956e5ae22ef9d diff --git a/turtle/Cargo.toml b/turtle/Cargo.toml index ddb10c4..793ce99 100644 --- a/turtle/Cargo.toml +++ b/turtle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rio_turtle" -version = "0.6.1" +version = "0.6.2" authors = ["Tpt ", "Pierre-Antoine Champin "] license = "Apache-2.0" readme = "../README.md" diff --git a/xml/Cargo.toml b/xml/Cargo.toml index 4c24cdb..f074230 100644 --- a/xml/Cargo.toml +++ b/xml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rio_xml" -version = "0.6.1" +version = "0.6.2" authors = ["Tpt "] license = "Apache-2.0" readme = "../README.md"