Skip to content

Commit

Permalink
bump versions and update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
pchampin committed Nov 21, 2024
1 parent 014cc79 commit 0e82184
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 15 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
0.9.0
License
- now dual-licensed as Apache 2.0 / CeCILL-B (#164)
- new matcher Not<M>
New features
- sophia_sparql implements (partially) a generic SPARQL query engine (#19)
- sophia_sparql_client implements a SPARQL protocol client (#97)
- bool now implements Term and FromTerm (#159)
Misc improvements
- upgrade MownStr to 0.3 (0.2 had some UB)
- all Error associated types now require Send + Sync (#172)
- f64 as FromTerm now supports xsd:decimal
- can now configure indentation in RDF/XML serializer (#156)
- less code redundancy between TripleSource and QuadSource (#52)
- traits now use 'impl Iterator' instead of 'Box<dyn Iterator>' (#163)
Bug fixes
- RcTerm and ArcTerm are now really cheap to clone (#160)
- other minor bug fixes
Documentation
- doc of sophia now inlines the doc of republished crates

0.8.0
New features
- long awaited "big refactoring":
Expand Down
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.8.0"
version = "0.9.0"
authors = ["Pierre-Antoine Champin <[email protected]>"]
edition = "2021"
repository = "https://github.com/pchampin/sophia_rs"
Expand All @@ -29,19 +29,19 @@ keywords = ["rdf", "linked-data", "semantic-web", "w3c"] # no more than 5


[workspace.dependencies]
sophia_api = { version = "0.8.0", path = "./api" }
sophia_c14n = { version = "0.8.0", path = "./c14n" }
sophia_inmem = { version = "0.8.0", path = "./inmem" }
sophia_iri = { version = "0.8.0", path = "./iri" }
sophia_isomorphism = { version = "0.8.0", path = "./isomorphism" }
sophia_jsonld = { version = "0.8.0", path = "./jsonld" }
sophia_resource = { version = "0.8.0", path = "./resource" }
sophia_sparql = { version = "0.8.0", path = "./sparql" }
sophia_sparql_client = { version = "0.8.0", path = "./sparql_client" }
sophia_rio = { version = "0.8.0", path = "./rio" }
sophia_term = { version = "0.8.0", path = "./term" }
sophia_turtle = { version = "0.8.0", path = "./turtle" }
sophia_xml = { version = "0.8.0", path = "./xml" }
sophia_api = { version = "0.9.0", path = "./api" }
sophia_c14n = { version = "0.9.0", path = "./c14n" }
sophia_inmem = { version = "0.9.0", path = "./inmem" }
sophia_iri = { version = "0.9.0", path = "./iri" }
sophia_isomorphism = { version = "0.9.0", path = "./isomorphism" }
sophia_jsonld = { version = "0.9.0", path = "./jsonld" }
sophia_resource = { version = "0.9.0", path = "./resource" }
sophia_sparql = { version = "0.9.0", path = "./sparql" }
sophia_sparql_client = { version = "0.9.0", path = "./sparql_client" }
sophia_rio = { version = "0.9.0", path = "./rio" }
sophia_term = { version = "0.9.0", path = "./term" }
sophia_turtle = { version = "0.9.0", path = "./turtle" }
sophia_xml = { version = "0.9.0", path = "./xml" }

criterion = "0.5"
env_logger = "0.11"
Expand All @@ -57,7 +57,7 @@ rio_turtle = { version = "0.8", features = ["generalized"] }
rio_xml = { version = "0.8" }
serde = { version = "1.0", features = ["derive"] }
test-case = "3.3"
thiserror = "1.0"
thiserror = "2.0"
tokio = { version="1.41", features = ["rt", "sync"] }
toml = "0.8"
url = "2.5"
Expand Down

0 comments on commit 0e82184

Please sign in to comment.