Releases v0.3.8

pull/270/head v0.3.8
Tpt 2 years ago committed by Thomas Tanon
parent dbb04936db
commit 825b330132
  1. 6
      CHANGELOG.md
  2. 10
      Cargo.lock
  3. 4
      js/Cargo.toml
  4. 2
      lib/Cargo.toml
  5. 4
      python/Cargo.toml
  6. 4
      server/Cargo.toml
  7. 4
      testsuite/Cargo.toml

@ -1,3 +1,9 @@
## [0.3.8] - 2022-10-22
### Changed
- Python: avoid uploading debug wheels to pypi.
## [0.3.7] - 2022-10-22
### Added

10
Cargo.lock generated

@ -744,7 +744,7 @@ dependencies = [
[[package]]
name = "oxigraph"
version = "0.3.7"
version = "0.3.8"
dependencies = [
"criterion",
"digest",
@ -777,7 +777,7 @@ dependencies = [
[[package]]
name = "oxigraph_js"
version = "0.3.7"
version = "0.3.8"
dependencies = [
"console_error_panic_hook",
"js-sys",
@ -788,7 +788,7 @@ dependencies = [
[[package]]
name = "oxigraph_server"
version = "0.3.7"
version = "0.3.8"
dependencies = [
"clap 4.0.18",
"flate2",
@ -803,7 +803,7 @@ dependencies = [
[[package]]
name = "oxigraph_testsuite"
version = "0.3.7"
version = "0.3.8"
dependencies = [
"anyhow",
"clap 4.0.18",
@ -1035,7 +1035,7 @@ dependencies = [
[[package]]
name = "pyoxigraph"
version = "0.3.7"
version = "0.3.8"
dependencies = [
"oxigraph",
"pyo3",

@ -1,6 +1,6 @@
[package]
name = "oxigraph_js"
version = "0.3.7"
version = "0.3.8"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -14,7 +14,7 @@ crate-type = ["cdylib"]
name = "oxigraph"
[dependencies]
oxigraph = { version = "0.3.7", path="../lib" }
oxigraph = { version = "0.3.8", path="../lib" }
wasm-bindgen = "0.2"
js-sys = "0.3"
console_error_panic_hook = "0.1"

@ -1,6 +1,6 @@
[package]
name = "oxigraph"
version = "0.3.7"
version = "0.3.8"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"

@ -1,6 +1,6 @@
[package]
name = "pyoxigraph"
version = "0.3.7"
version = "0.3.8"
authors = ["Tpt"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -16,5 +16,5 @@ name = "pyoxigraph"
doctest = false
[dependencies]
oxigraph = { version = "0.3.7", path="../lib", features = ["http_client"] }
oxigraph = { version = "0.3.8", path="../lib", features = ["http_client"] }
pyo3 = { version = "0.17", features = ["extension-module", "abi3-py37"] }

@ -1,6 +1,6 @@
[package]
name = "oxigraph_server"
version = "0.3.7"
version = "0.3.8"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -14,7 +14,7 @@ edition = "2021"
[dependencies]
oxhttp = { version = "0.1", features = ["rayon"] }
clap = { version = "4", features = ["derive"] }
oxigraph = { version = "0.3.7", path = "../lib", features = ["http_client"] }
oxigraph = { version = "0.3.8", path = "../lib", features = ["http_client"] }
sparesults = { version = "0.1.1", path = "../lib/sparesults", features = ["rdf-star"] }
rand = "0.8"
url = "2"

@ -1,6 +1,6 @@
[package]
name = "oxigraph_testsuite"
version = "0.3.7"
version = "0.3.8"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
@ -15,7 +15,7 @@ publish = false
anyhow = "1"
clap = { version = "4", features = ["derive"] }
time = { version = "0.3", features = ["formatting"] }
oxigraph = { version = "0.3.7", path="../lib" }
oxigraph = { version = "0.3.8", path="../lib" }
text-diff = "0.4"
[dev-dependencies]

Loading…
Cancel
Save