Skip to content

Commit

Permalink
Merge branch 'delayed_release'
Browse files Browse the repository at this point in the history
  • Loading branch information
pchampin committed Mar 13, 2020
2 parents 2ce4f4b + eef0ae1 commit 501add0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
0.4.0
New features
- Turtle, TriG, Generalized TriG parsers
Improvements
- N-Triples and N-Quads parsers are much faster, thanks to @Tpt's rio
Improved API
- No more lifetime parameter in Triple, Quad, Graph, Dataset
- Common traits for parsers and serializers
- More idiomatic API for Triple- and QuadSource
Dev
- reduced dependancies (coercible-errors, error-chain, pest)
- no more central Error type

0.3.0
New features
- support for quads and datasets
Expand Down
10 changes: 5 additions & 5 deletions sophia/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia"
version = "0.3.0"
version = "0.4.0"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
description = "A Rust toolkit for RDF and Linked Data"
repository = "https://github.com/pchampin/sophia_rs"
Expand All @@ -20,13 +20,13 @@ xml = ["quick-xml", "percent-encoding"]
[dependencies]
language-tag = "0.9.0"
lazy_static = "1.4.0"
regex = "1.2.1"
resiter = "0.3.0"
regex = "1.3.4"
resiter = "0.4.0"
rio_api = { version = "0.4.0", features = ["generalized"] }
rio_turtle = { version = "0.4.0", features = ["generalized"] }
url = "2.1.0"
url = "2.1.1"
weak-table = "0.2.3"
thiserror = "1.0.9"
thiserror = "1.0.11"

quick-xml = { version = "0.17.2", optional = true }
percent-encoding = { version = "2.1.0", optional = true }
Expand Down

0 comments on commit 501add0

Please sign in to comment.