Skip to content

Commit

Permalink
bump dependencies and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
pchampin committed Sep 15, 2023
1 parent 3315774 commit 76a2fe6
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 14 deletions.
24 changes: 13 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,29 @@ members = [
#"jsonld",
"xml",
]
resolver = "2"

[workspace.package]
version = "0.8.0-alpha.1"
version = "0.8.0-alpha.2"
authors = ["Pierre-Antoine Champin <[email protected]>"]
edition = "2021"
repository = "https://github.com/pchampin/sophia_rs"
readme = "./README.md"
license = "CECILL-B"
keywords = ["rdf", "linked-data", "semantic-web", "w3c"] # no more than 5


[workspace.dependencies]
sophia_api = { version = "0.8.0-alpha.1", path = "./api" }
sophia_c14n = { version = "0.8.0-alpha.1", path = "./c14n" }
sophia_inmem = { version = "0.8.0-alpha.1", path = "./inmem" }
sophia_iri = { version = "0.8.0-alpha.1", path = "./iri" }
sophia_isomorphism = { version = "0.8.0-alpha.1", path = "./isomorphism" }
sophia_resource = { version = "0.8.0-alpha.1", path = "./resource" }
sophia_rio = { version = "0.8.0-alpha.1", path = "./rio" }
sophia_term = { version = "0.8.0-alpha.1", path = "./term" }
sophia_turtle = { version = "0.8.0-alpha.1", path = "./turtle" }
sophia_xml = { version = "0.8.0-alpha.1", path = "./xml" }
sophia_api = { version = "0.8.0-alpha.2", path = "./api" }
sophia_c14n = { version = "0.8.0-alpha.2", path = "./c14n" }
sophia_inmem = { version = "0.8.0-alpha.2", path = "./inmem" }
sophia_iri = { version = "0.8.0-alpha.2", path = "./iri" }
sophia_isomorphism = { version = "0.8.0-alpha.2", path = "./isomorphism" }
sophia_resource = { version = "0.8.0-alpha.2", path = "./resource" }
sophia_rio = { version = "0.8.0-alpha.2", path = "./rio" }
sophia_term = { version = "0.8.0-alpha.2", path = "./term" }
sophia_turtle = { version = "0.8.0-alpha.2", path = "./turtle" }
sophia_xml = { version = "0.8.0-alpha.2", path = "./xml" }

criterion = "0.5"
lazy_static = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
sophia_iri = { workspace = true, features = ["test_data"] }
test-case.workspace = true
toml = "0.7.4"
toml = "0.8.0"
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.8.0-alpha.1"
sophia = "0.8.0-alpha.2"
```


Expand Down
2 changes: 1 addition & 1 deletion iri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde = { version = "1.0", features = ["derive"], optional = true }

[dev-dependencies]
criterion.workspace = true
toml = "0.7.4"
toml = "0.8.0"

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

<https://github.com/pchampin/sophia_rs> doap:release [
doap:name "sophia-0.8.0-alpha.2";
doap:revision "0.8.0-alpha.2";
doap:created "2023-09-15"^^xsd:date;
],[
doap:name "sophia-0.8.0-alpha.1";
doap:revision "0.8.0-alpha.1";
doap:created "2023-05-24"^^xsd:date;
Expand Down

0 comments on commit 76a2fe6

Please sign in to comment.