Releases v0.3.0

pull/192/head v0.3.0
Tpt 3 years ago
parent c2ffcc2d1d
commit 913a826140
  1. 9
      CHANGELOG.md
  2. 18
      Cargo.lock
  3. 4
      js/Cargo.toml
  4. 10
      lib/Cargo.toml
  5. 2
      lib/oxrdf/Cargo.toml
  6. 4
      lib/sparesults/Cargo.toml
  7. 4
      lib/spargebra/Cargo.toml
  8. 2
      oxrocksdb-sys/Cargo.toml
  9. 4
      python/Cargo.toml
  10. 6
      server/Cargo.toml
  11. 4
      testsuite/Cargo.toml

@ -1,4 +1,11 @@
## [0.3.0-rc.4] - 2022-03-14
## [0.3.0] - 2022-03-19
### Changed
- Fixes compilation on ARM.
- Moves some lints from errors to warnings in order to avoid compilation failures on different Rust versions.
## [0.3.0-rc.1] - 2022-03-14
### Added
- The bulk loader now check available memory and tries to increase its batch size to make use of it.

18
Cargo.lock generated

@ -790,7 +790,7 @@ dependencies = [
[[package]]
name = "oxigraph"
version = "0.3.0-rc.1"
version = "0.3.0"
dependencies = [
"criterion",
"digest",
@ -823,7 +823,7 @@ dependencies = [
[[package]]
name = "oxigraph_js"
version = "0.3.0-rc.1"
version = "0.3.0"
dependencies = [
"console_error_panic_hook",
"js-sys",
@ -834,7 +834,7 @@ dependencies = [
[[package]]
name = "oxigraph_server"
version = "0.3.0-rc.1"
version = "0.3.0"
dependencies = [
"clap 3.1.6",
"flate2",
@ -848,7 +848,7 @@ dependencies = [
[[package]]
name = "oxigraph_testsuite"
version = "0.3.0-rc.1"
version = "0.3.0"
dependencies = [
"anyhow",
"clap 3.1.6",
@ -872,7 +872,7 @@ checksum = "a8a8821a5332e388ab8d6436ab703c5744516c11976e2c08702fbc93fe4b3f51"
[[package]]
name = "oxrdf"
version = "0.1.0-rc.1"
version = "0.1.0"
dependencies = [
"lasso",
"oxilangtag",
@ -882,7 +882,7 @@ dependencies = [
[[package]]
name = "oxrocksdb-sys"
version = "0.3.0-rc.1"
version = "0.3.0"
dependencies = [
"bindgen",
"cc",
@ -1081,7 +1081,7 @@ dependencies = [
[[package]]
name = "pyoxigraph"
version = "0.3.0-rc.1"
version = "0.3.0"
dependencies = [
"oxigraph",
"pyo3",
@ -1440,7 +1440,7 @@ checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
[[package]]
name = "sparesults"
version = "0.1.0-rc.1"
version = "0.1.0"
dependencies = [
"json-event-parser",
"oxrdf",
@ -1449,7 +1449,7 @@ dependencies = [
[[package]]
name = "spargebra"
version = "0.2.0-rc.1"
version = "0.2.0"
dependencies = [
"oxilangtag",
"oxiri",

@ -1,6 +1,6 @@
[package]
name = "oxigraph_js"
version = "0.3.0-rc.1"
version = "0.3.0"
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.0-rc.1", path="../lib" }
oxigraph = { version = "0.3.0", 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.0-rc.1"
version = "0.3.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -37,13 +37,13 @@ nom = "7"
siphasher = "0.3"
lazy_static = "1"
sysinfo = "0.23"
oxrdf = { version = "0.1.0-rc.1", path="oxrdf", features = ["rdf-star"] }
spargebra = { version = "0.2.0-rc.1", path="spargebra", features = ["rdf-star"] }
sparesults = { version = "0.1.0-rc.1", path="sparesults", features = ["rdf-star"] }
oxrdf = { version = "0.1.0", path="oxrdf", features = ["rdf-star"] }
spargebra = { version = "0.2.0", path="spargebra", features = ["rdf-star"] }
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.0-rc.1", path="../oxrocksdb-sys" }
oxrocksdb-sys = { version = "0.3.0", path="../oxrocksdb-sys" }
oxhttp = { version = "0.1", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]

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

@ -1,6 +1,6 @@
[package]
name = "sparesults"
version = "0.1.0-rc.1"
version = "0.1.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -18,7 +18,7 @@ rdf-star = ["oxrdf/rdf-star"]
[dependencies]
json-event-parser = "0.1"
oxrdf = { version = "0.1.0-rc.1", path="../oxrdf" }
oxrdf = { version = "0.1.0", path="../oxrdf" }
quick-xml = "0.22"
[package.metadata.docs.rs]

@ -1,6 +1,6 @@
[package]
name = "spargebra"
version = "0.2.0-rc.1"
version = "0.2.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -21,7 +21,7 @@ peg = "0.8"
rand = "0.8"
oxiri = "0.2"
oxilangtag = "0.1"
oxrdf = { version = "0.1.0-rc.1", path="../oxrdf" }
oxrdf = { version = "0.1.0", path="../oxrdf" }
[package.metadata.docs.rs]
all-features = true

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

@ -1,6 +1,6 @@
[package]
name = "pyoxigraph"
version = "0.3.0-rc.1"
version = "0.3.0"
authors = ["Tpt"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -16,5 +16,5 @@ name = "pyoxigraph"
doctest = false
[dependencies]
oxigraph = { version = "0.3.0-rc.1", path="../lib", features = ["http_client"] }
oxigraph = { version = "0.3.0", 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.0-rc.1"
version = "0.3.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
@ -14,8 +14,8 @@ edition = "2021"
[dependencies]
oxhttp = { version = "0.1", features = ["rayon"] }
clap = { version = "3", features = ["derive"] }
oxigraph = { version = "0.3.0-rc.1", path = "../lib", features = ["http_client"] }
sparesults = { version = "0.1.0-rc.1", path = "../lib/sparesults", features = ["rdf-star"] }
oxigraph = { version = "0.3.0", path = "../lib", features = ["http_client"] }
sparesults = { version = "0.1.0", path = "../lib/sparesults", features = ["rdf-star"] }
rand = "0.8"
url = "2"
oxiri = "0.2"

@ -1,6 +1,6 @@
[package]
name = "oxigraph_testsuite"
version = "0.3.0-rc.1"
version = "0.3.0"
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.0-rc.1", path="../lib" }
oxigraph = { version = "0.3.0", path="../lib" }
text-diff = "0.4"
[dev-dependencies]

Loading…
Cancel
Save