From 1b9163c49e2183b90bfef2fd4678a5a3fc376457 Mon Sep 17 00:00:00 2001 From: Tpt Date: Thu, 7 Jan 2021 20:59:53 +0100 Subject: [PATCH] Releases v0.2.0 --- CHANGELOG.md | 2 +- js/Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- python/Cargo.toml | 4 ++-- server/Cargo.toml | 4 ++-- testsuite/Cargo.toml | 4 ++-- wikibase/Cargo.toml | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b0d4595..bfd7f549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Master +## [0.2.0] - 2021-01-07 ### 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. diff --git a/js/Cargo.toml b/js/Cargo.toml index 9aa934bf..a6f56345 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.1.1" +version = "0.2.0" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -17,7 +17,7 @@ name = "oxigraph" wasm-opt = false [dependencies] -oxigraph = { version = "0.1", path="../lib" } +oxigraph = { version = "0.2", path="../lib" } wasm-bindgen = "0.2" js-sys = "0.3" console_error_panic_hook = "0.1" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index fd465cbf..f4dc171b 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.1.1" +version = "0.2.0" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/python/Cargo.toml b/python/Cargo.toml index 1dd0caa7..aeff7e24 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoxigraph" -version = "0.1.1" +version = "0.2.0" authors = ["Tpt"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -15,7 +15,7 @@ name = "pyoxigraph" doctest = false [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"]} [package.metadata.maturin] diff --git a/server/Cargo.toml b/server/Cargo.toml index 215b3a45..6a921ab0 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.1.1" +version = "0.2.0" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -20,7 +20,7 @@ argh = "0.1" async-std = { version = "1", features = ["attributes"] } async-h1 = "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" url = "2" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 24d64fad..b7a2b1ae 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_testsuite" -version = "0.1.1" +version = "0.2.0" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "../README.md" @@ -14,7 +14,7 @@ publish = false [dependencies] anyhow = "1" chrono = "0.4" -oxigraph = { version = "0.1", path="../lib" } +oxigraph = { version = "0.2", path="../lib" } text-diff = "0.4" [dev-dependencies] diff --git a/wikibase/Cargo.toml b/wikibase/Cargo.toml index 33a47e8e..e7d125f1 100644 --- a/wikibase/Cargo.toml +++ b/wikibase/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_wikibase" -version = "0.1.1" +version = "0.2.0" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -17,6 +17,6 @@ async-h1 = "2" chrono = "0.4" http-client = { version = "6", features = ["h1_client"] } 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" url = "2" \ No newline at end of file