Releases v0.3.2

pull/216/head v0.3.2
Tpt 3 years ago
parent aeb79dd572
commit 283444f7c3
  1. 8
      CHANGELOG.md
  2. 24
      Cargo.lock
  3. 4
      js/Cargo.toml
  4. 4
      lib/Cargo.toml
  5. 2
      oxrocksdb-sys/Cargo.toml
  6. 4
      python/Cargo.toml
  7. 4
      server/Cargo.toml
  8. 4
      testsuite/Cargo.toml

@ -1,3 +1,11 @@
## [0.3.2] - 2022-04-24
### Changed
- Fixes a bug in the server bulk loader that crashed on very small files.
- Upgrades RocksDB to v7.1.
- Removes some dead code in the bulk loader.
## [0.3.1] - 2022-04-02
### Changed

24
Cargo.lock generated

@ -39,9 +39,9 @@ dependencies = [
[[package]]
name = "anyhow"
version = "1.0.56"
version = "1.0.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4361135be9122e0870de935d7c439aef945b9f9ddd4199a553b5270b49c82a27"
checksum = "08f9b8508dccb7687a1d6c4ce66b2b0ecef467c94667de27d8d7fe1f8d2a9cdc"
[[package]]
name = "atty"
@ -183,9 +183,9 @@ dependencies = [
[[package]]
name = "clap"
version = "3.1.10"
version = "3.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3124f3f75ce09e22d1410043e1e24f2ecc44fad3afe4f08408f1f7663d68da2b"
checksum = "7c167e37342afc5f33fd87bbc870cedd020d2a6dffa05d45ccd9241fbdd146db"
dependencies = [
"atty",
"bitflags",
@ -787,7 +787,7 @@ dependencies = [
[[package]]
name = "oxigraph"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"criterion",
"digest",
@ -820,7 +820,7 @@ dependencies = [
[[package]]
name = "oxigraph_js"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"console_error_panic_hook",
"js-sys",
@ -831,9 +831,9 @@ dependencies = [
[[package]]
name = "oxigraph_server"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"clap 3.1.10",
"clap 3.1.12",
"flate2",
"oxhttp",
"oxigraph",
@ -845,10 +845,10 @@ dependencies = [
[[package]]
name = "oxigraph_testsuite"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"anyhow",
"clap 3.1.10",
"clap 3.1.12",
"criterion",
"oxigraph",
"text-diff",
@ -879,7 +879,7 @@ dependencies = [
[[package]]
name = "oxrocksdb-sys"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"bindgen",
"cc",
@ -1076,7 +1076,7 @@ dependencies = [
[[package]]
name = "pyoxigraph"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"oxigraph",
"pyo3",

@ -1,6 +1,6 @@
[package]
name = "oxigraph_js"
version = "0.3.1"
version = "0.3.2"
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.1", path="../lib" }
oxigraph = { version = "0.3.2", 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.1"
version = "0.3.2"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -43,7 +43,7 @@ sparesults = { version = "0.1.0", path="sparesults", features = ["rdf-star"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
libc = "0.2"
oxrocksdb-sys = { version = "0.3.1", path="../oxrocksdb-sys" }
oxrocksdb-sys = { version = "0.3.2", path="../oxrocksdb-sys" }
oxhttp = { version = "0.1", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]

@ -1,6 +1,6 @@
[package]
name = "oxrocksdb-sys"
version = "0.3.1"
version = "0.3.2"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "GPL-2.0 OR Apache-2.0"
repository = "https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys"

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

@ -1,6 +1,6 @@
[package]
name = "oxigraph_server"
version = "0.3.1"
version = "0.3.2"
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 = "3", features = ["derive"] }
oxigraph = { version = "0.3.1", path = "../lib", features = ["http_client"] }
oxigraph = { version = "0.3.2", path = "../lib", features = ["http_client"] }
sparesults = { version = "0.1.0", path = "../lib/sparesults", features = ["rdf-star"] }
rand = "0.8"
url = "2"

@ -1,6 +1,6 @@
[package]
name = "oxigraph_testsuite"
version = "0.3.1"
version = "0.3.2"
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 = "3", features = ["derive"] }
time = { version = "0.3", features = ["formatting"] }
oxigraph = { version = "0.3.1", path="../lib" }
oxigraph = { version = "0.3.2", path="../lib" }
text-diff = "0.4"
[dev-dependencies]

Loading…
Cancel
Save