Releases v0.2.0

pull/73/head v0.2.0
Tpt 4 years ago
parent ae98ff4cac
commit 1b9163c49e
  1. 2
      CHANGELOG.md
  2. 4
      js/Cargo.toml
  3. 2
      lib/Cargo.toml
  4. 4
      python/Cargo.toml
  5. 4
      server/Cargo.toml
  6. 4
      testsuite/Cargo.toml
  7. 4
      wikibase/Cargo.toml

@ -1,4 +1,4 @@
## Master ## [0.2.0] - 2021-01-07
### Added ### Added
- [SPARQL 1.1 Update](https://www.w3.org/TR/sparql11-update/) support for Rust, Python and JavaScript. All store-like classes now provide an `update` method. - [SPARQL 1.1 Update](https://www.w3.org/TR/sparql11-update/) support for Rust, Python and JavaScript. All store-like classes now provide an `update` method.

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

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

@ -1,6 +1,6 @@
[package] [package]
name = "pyoxigraph" name = "pyoxigraph"
version = "0.1.1" version = "0.2.0"
authors = ["Tpt"] authors = ["Tpt"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -15,7 +15,7 @@ name = "pyoxigraph"
doctest = false doctest = false
[dependencies] [dependencies]
oxigraph = {version = "0.1.1", path="../lib", features = ["sled", "http_client"]} oxigraph = {version = "0.2", path="../lib", features = ["sled", "http_client"]}
pyo3 = {version = "0.13", features = ["extension-module"]} pyo3 = {version = "0.13", features = ["extension-module"]}
[package.metadata.maturin] [package.metadata.maturin]

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_server" name = "oxigraph_server"
version = "0.1.1" version = "0.2.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -20,7 +20,7 @@ argh = "0.1"
async-std = { version = "1", features = ["attributes"] } async-std = { version = "1", features = ["attributes"] }
async-h1 = "2" async-h1 = "2"
http-types = "2" http-types = "2"
oxigraph = { version = "0.1", path="../lib", features = ["http_client"] } oxigraph = { version = "0.2", path="../lib", features = ["http_client"] }
rand = "0.8" rand = "0.8"
url = "2" url = "2"

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_testsuite" name = "oxigraph_testsuite"
version = "0.1.1" version = "0.2.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "../README.md" readme = "../README.md"
@ -14,7 +14,7 @@ publish = false
[dependencies] [dependencies]
anyhow = "1" anyhow = "1"
chrono = "0.4" chrono = "0.4"
oxigraph = { version = "0.1", path="../lib" } oxigraph = { version = "0.2", path="../lib" }
text-diff = "0.4" text-diff = "0.4"
[dev-dependencies] [dev-dependencies]

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_wikibase" name = "oxigraph_wikibase"
version = "0.1.1" version = "0.2.0"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -17,6 +17,6 @@ async-h1 = "2"
chrono = "0.4" chrono = "0.4"
http-client = { version = "6", features = ["h1_client"] } http-client = { version = "6", features = ["h1_client"] }
http-types = "2" http-types = "2"
oxigraph = { version = "0.1", path ="../lib", features = ["rocksdb", "http_client"] } oxigraph = { version = "0.2", path ="../lib", features = ["rocksdb", "http_client"] }
serde_json = "1" serde_json = "1"
url = "2" url = "2"
Loading…
Cancel
Save