From 2c63ad7ea700e6bb1de9a56cad9fa5c9e28eed0a Mon Sep 17 00:00:00 2001 From: Tpt Date: Sat, 22 Oct 2022 18:32:32 +0200 Subject: [PATCH] Releases v0.3.8 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 10 +++++----- js/Cargo.toml | 4 ++-- lib/Cargo.toml | 2 +- python/Cargo.toml | 4 ++-- server/Cargo.toml | 4 ++-- testsuite/Cargo.toml | 4 ++-- 7 files changed, 20 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd9f9b5b..6a639965 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index aef58f6d..0f968be6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/js/Cargo.toml b/js/Cargo.toml index 87eadaef..3c10b92e 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.3.7" +version = "0.3.8" authors = ["Tpt "] 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" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 22b1efd0..385f7aee 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.3.7" +version = "0.3.8" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/python/Cargo.toml b/python/Cargo.toml index 60a9f4e1..20762193 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -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"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index 26e66708..98aac344 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.3.7" +version = "0.3.8" authors = ["Tpt "] 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" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 21091d24..ba90c607 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_testsuite" -version = "0.3.7" +version = "0.3.8" authors = ["Tpt "] 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]