Skip to content

Commit

Permalink
ready to release
Browse files Browse the repository at this point in the history
fix #111
  • Loading branch information
pchampin committed Feb 1, 2022
1 parent 18fd4aa commit 4a3f7ac
Show file tree
Hide file tree
Showing 13 changed files with 57 additions and 49 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.7.2
Bug fixes
- update dependency on oxiri to fix build issue

0.7.1
Bug fixes
- prefix validation was working backward
Expand Down
6 changes: 3 additions & 3 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_api"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - Core API"
Expand All @@ -21,14 +21,14 @@ default = []
test_macro = []

[dependencies]
sophia_iri = { version = "0.7.1", path = "../iri" }
sophia_iri = { version = "0.7.2", path = "../iri" }
lazy_static = "1.4.0"
mownstr = "0.1.3"
regex = "1.5.4"
resiter = "0.4.0"
thiserror = "1.0.30"

[dev-dependencies]
sophia_iri = { version = "0.7.1", path = "../iri", features = ["test_data"] }
sophia_iri = { version = "0.7.2", path = "../iri", features = ["test_data"] }
sophia_term = { version = "0.*", path = "../term" }
test-case = "1.2.1"
2 changes: 1 addition & 1 deletion book/src/01_getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Following a short example how to build a graph, mutate it and serialize it back.
Add the sophia crate to your dependencies in `Cargo.toml`
```bash
[dependencies]
sophia = "0.7.1"
sophia = "0.7.2"
```


Expand Down
6 changes: 3 additions & 3 deletions indexed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_indexed"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - Utility traits and functions for index-based implementations of graphs and datasets"
Expand All @@ -13,7 +13,7 @@ keywords = ["rdf", "linked-data", "semantic-web"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sophia_api = { version = "0.7.1", path = "../api" }
sophia_term = { version = "0.7.1", path = "../term" }
sophia_api = { version = "0.7.2", path = "../api" }
sophia_term = { version = "0.7.2", path = "../term" }

[dev-dependencies]
10 changes: 5 additions & 5 deletions inmem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_inmem"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - In-memory Graph and Dataset implementations"
Expand All @@ -13,9 +13,9 @@ keywords = ["rdf", "linked-data", "semantic-web"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sophia_api = { version = "0.7.1", path = "../api" }
sophia_indexed = { version = "0.7.1", path = "../indexed" }
sophia_term = { version = "0.7.1", path = "../term" }
sophia_api = { version = "0.7.2", path = "../api" }
sophia_indexed = { version = "0.7.2", path = "../indexed" }
sophia_term = { version = "0.7.2", path = "../term" }

[dev-dependencies]
sophia_api = { version = "0.7.1", path = "../api", features = ["test_macro"] }
sophia_api = { version = "0.7.2", path = "../api", features = ["test_macro"] }
2 changes: 1 addition & 1 deletion iri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_iri"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - IRI management"
Expand Down
10 changes: 5 additions & 5 deletions jsonld/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_jsonld"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - JSON-LD serializer"
Expand All @@ -15,10 +15,10 @@ keywords = ["rdf", "linked-data", "semantic-web", "json-ld"]
[dependencies]
chrono = { version = "0.4.19", optional = true }
json = "0.12.4"
sophia_api = { version = "0.7.1", path = "../api" }
sophia_iri = { version = "0.7.1", path = "../iri" }
sophia_term = { version = "0.7.1", path = "../term" }
sophia_turtle = { version = "0.7.1", path = "../turtle" }
sophia_api = { version = "0.7.2", path = "../api" }
sophia_iri = { version = "0.7.2", path = "../iri" }
sophia_term = { version = "0.7.2", path = "../term" }
sophia_turtle = { version = "0.7.2", path = "../turtle" }
thiserror = "1.0.30"

[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions rio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_rio"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - Common code for Rio adapters"
Expand All @@ -14,7 +14,7 @@ keywords = ["rdf", "linked-data", "semantic-web"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sophia_api = { version = "0.7.1", path = "../api" }
sophia_api = { version = "0.7.2", path = "../api" }
rio_api = { version = "0.6.1", features = ["generalized"] }

[dev-dependencies]
20 changes: 10 additions & 10 deletions sophia/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia"
version = "0.7.1"
version = "0.7.2"
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 @@ -23,14 +23,14 @@ test_macro = ["sophia_api/test_macro"]
all_tests = []

[dependencies]
sophia_api = { version = "0.7.1", path = "../api" }
sophia_indexed = { version = "0.7.1", path = "../indexed" }
sophia_inmem = { version = "0.7.1", path = "../inmem" }
sophia_iri = { version = "0.7.1", path = "../iri" }
sophia_rio = { version = "0.7.1", path = "../rio" }
sophia_term = { version = "0.7.1", path = "../term" }
sophia_turtle = { version = "0.7.1", path = "../turtle" }
sophia_xml = { version = "0.7.1", path = "../xml", optional = true }
sophia_api = { version = "0.7.2", path = "../api" }
sophia_indexed = { version = "0.7.2", path = "../indexed" }
sophia_inmem = { version = "0.7.2", path = "../inmem" }
sophia_iri = { version = "0.7.2", path = "../iri" }
sophia_rio = { version = "0.7.2", path = "../rio" }
sophia_term = { version = "0.7.2", path = "../term" }
sophia_turtle = { version = "0.7.2", path = "../turtle" }
sophia_xml = { version = "0.7.2", path = "../xml", optional = true }

resiter = "0.4.0"

Expand All @@ -44,7 +44,7 @@ url = { version = "2.2.2", optional = true }
[dev-dependencies]
criterion = "0.3.5"
lazy_static = "1.4.0"
sophia_api = { version = "0.7.1", path = "../api", features = ["test_macro"] }
sophia_api = { version = "0.7.2", path = "../api", features = ["test_macro"] }

[[bench]]
name = "main"
Expand Down
4 changes: 4 additions & 0 deletions sophia_doap.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
foaf:name "Pierre-Antoine Champin".

<https://github.com/pchampin/sophia_rs> doap:release [
doap:name "sophia-0.7.2";
doap:revision "0.7.2";
doap:created "2022-02-01"^^xsd:date;
],[
doap:name "sophia-0.7.1";
doap:revision "0.7.1";
doap:created "2021-12-21"^^xsd:date;
Expand Down
8 changes: 4 additions & 4 deletions term/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_term"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - Implementations of RDF terms"
Expand All @@ -14,8 +14,8 @@ keywords = ["rdf", "linked-data", "semantic-web"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sophia_api = { version = "0.7.1", path = "../api" }
sophia_iri = { version = "0.7.1", path = "../iri" }
sophia_api = { version = "0.7.2", path = "../api" }
sophia_iri = { version = "0.7.2", path = "../iri" }
oxilangtag = "0.1.2"
lazy_static = "1.4.0"
mownstr = "0.1.3"
Expand All @@ -25,4 +25,4 @@ thiserror = "1.0.30"

[dev-dependencies]
test-case = "1.2.1"
sophia_iri = { version = "0.7.1", path = "../iri", features = ["test_data"] }
sophia_iri = { version = "0.7.2", path = "../iri", features = ["test_data"] }
18 changes: 9 additions & 9 deletions turtle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_turtle"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - parsers and serializers for the Turtle-family of syntaxes"
Expand All @@ -14,17 +14,17 @@ keywords = ["rdf", "linked-data", "semantic-web"]

[dependencies]
lazy_static = { version = "1.4.0" }
oxiri = "0.1.1"
oxiri = "0.2.1"
regex = { version = "1.5.4" }
rio_api = { version = "0.6.1", features = ["generalized"] }
rio_turtle = { version = "0.6.1", features = ["generalized"] }
sophia_api = { version = "0.7.1", path = "../api" }
sophia_indexed = { version = "0.7.1", path = "../indexed" }
sophia_inmem = { version = "0.7.1", path = "../inmem" }
sophia_iri = { version = "0.7.1", path = "../iri" }
sophia_term = { version = "0.7.1", path = "../term" }
sophia_rio = { version = "0.7.1", path = "../rio" }
sophia_api = { version = "0.7.2", path = "../api" }
sophia_indexed = { version = "0.7.2", path = "../indexed" }
sophia_inmem = { version = "0.7.2", path = "../inmem" }
sophia_iri = { version = "0.7.2", path = "../iri" }
sophia_term = { version = "0.7.2", path = "../term" }
sophia_rio = { version = "0.7.2", path = "../rio" }
thiserror = "1.0.30"

[dev-dependencies]
sophia_term = { version = "0.7.1", path = "../term" }
sophia_term = { version = "0.7.2", path = "../term" }
12 changes: 6 additions & 6 deletions xml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sophia_xml"
version = "0.7.1"
version = "0.7.2"
authors = ["Pierre-Antoine Champin <pchampin@liris.cnrs.fr>"]
edition = "2021"
description = "A Rust toolkit for RDF and Linked Data - RDF/XML parser and serializer"
Expand All @@ -13,11 +13,11 @@ keywords = ["rdf", "linked-data", "semantic-web"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
oxiri = "0.1.1"
oxiri = "0.2.1"
rio_xml = "0.6.1"
sophia_api = { version = "0.7.1", path = "../api" }
sophia_rio = { version = "0.7.1", path = "../rio" }
sophia_api = { version = "0.7.2", path = "../api" }
sophia_rio = { version = "0.7.2", path = "../rio" }

[dev-dependencies]
sophia_inmem = { version = "0.7.1", path = "../inmem" }
sophia_term = { version = "0.7.1", path = "../term" }
sophia_inmem = { version = "0.7.2", path = "../inmem" }
sophia_term = { version = "0.7.2", path = "../term" }

0 comments on commit 4a3f7ac

Please sign in to comment.