From 6262e02edfd7271dad892226c039ebd9ba9b675d Mon Sep 17 00:00:00 2001 From: Tpt Date: Fri, 28 Oct 2022 14:59:12 +0200 Subject: [PATCH] Initialise v0.4 dev branch --- .github/workflows/tests.yml | 2 ++ Cargo.lock | 12 ++++++------ js/Cargo.toml | 4 ++-- lib/Cargo.toml | 4 ++-- lib/spargebra/Cargo.toml | 2 +- python/Cargo.toml | 4 ++-- server/Cargo.toml | 4 ++-- testsuite/Cargo.toml | 4 ++-- 8 files changed, 19 insertions(+), 17 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 85992477..41e58d88 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,9 +4,11 @@ on: push: branches: - main + - dev pull_request: branches: - main + - dev schedule: - cron: "0 0 * * 0" diff --git a/Cargo.lock b/Cargo.lock index 0f968be6..2c147d45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -744,7 +744,7 @@ dependencies = [ [[package]] name = "oxigraph" -version = "0.3.8" +version = "0.4.0-alpha" dependencies = [ "criterion", "digest", @@ -777,7 +777,7 @@ dependencies = [ [[package]] name = "oxigraph_js" -version = "0.3.8" +version = "0.4.0-alpha" dependencies = [ "console_error_panic_hook", "js-sys", @@ -788,7 +788,7 @@ dependencies = [ [[package]] name = "oxigraph_server" -version = "0.3.8" +version = "0.4.0-alpha" dependencies = [ "clap 4.0.18", "flate2", @@ -803,7 +803,7 @@ dependencies = [ [[package]] name = "oxigraph_testsuite" -version = "0.3.8" +version = "0.4.0-alpha" dependencies = [ "anyhow", "clap 4.0.18", @@ -1035,7 +1035,7 @@ dependencies = [ [[package]] name = "pyoxigraph" -version = "0.3.8" +version = "0.4.0-alpha" dependencies = [ "oxigraph", "pyo3", @@ -1374,7 +1374,7 @@ dependencies = [ [[package]] name = "spargebra" -version = "0.2.2" +version = "0.3.0-alpha" dependencies = [ "oxilangtag", "oxiri", diff --git a/js/Cargo.toml b/js/Cargo.toml index 3c10b92e..5ff976d2 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.3.8" +version = "0.4.0-alpha" 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.8", path="../lib" } +oxigraph = { version = "0.4.0-alpha", 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 385f7aee..51a097af 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.3.8" +version = "0.4.0-alpha" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -38,7 +38,7 @@ siphasher = "0.3" lazy_static = "1" sysinfo = "0.26" oxrdf = { version = "0.1.0", path="oxrdf", features = ["rdf-star"] } -spargebra = { version = "0.2.2", path="spargebra", features = ["rdf-star"] } +spargebra = { version = "0.3.0-alpha", path="spargebra", features = ["rdf-star"] } sparesults = { version = "0.1.1", path="sparesults", features = ["rdf-star"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] diff --git a/lib/spargebra/Cargo.toml b/lib/spargebra/Cargo.toml index 2ae069c7..21a1cd49 100644 --- a/lib/spargebra/Cargo.toml +++ b/lib/spargebra/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spargebra" -version = "0.2.2" +version = "0.3.0-alpha" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/python/Cargo.toml b/python/Cargo.toml index 20762193..e66e1522 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoxigraph" -version = "0.3.8" +version = "0.4.0-alpha" authors = ["Tpt"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -16,5 +16,5 @@ name = "pyoxigraph" doctest = false [dependencies] -oxigraph = { version = "0.3.8", path="../lib", features = ["http_client"] } +oxigraph = { version = "0.4.0-alpha", 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 98aac344..427df402 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.3.8" +version = "0.4.0-alpha" 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.8", path = "../lib", features = ["http_client"] } +oxigraph = { version = "0.4.0-alpha", 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 ba90c607..fac44a8b 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_testsuite" -version = "0.3.8" +version = "0.4.0-alpha" 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.8", path="../lib" } +oxigraph = { version = "0.4.0-alpha", path="../lib" } text-diff = "0.4" [dev-dependencies]