diff --git a/js/Cargo.toml b/js/Cargo.toml index ce91ce01..c8b68c12 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.1.0-rc.1" +version = "0.1.0" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "README.md" @@ -17,7 +17,7 @@ name = "oxigraph" wasm-opt = false [dependencies] -oxigraph = {version = "0.1.0-rc.1"} +oxigraph = { version = "0.1", 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 cbb7e601..485ed108 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.1.0-rc.1" +version = "0.1.0" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "../README.md" diff --git a/python/Cargo.toml b/python/Cargo.toml index 467e1ebb..f6b0ecf4 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoxigraph" -version = "0.1.0-rc.1" +version = "0.1.0" authors = ["Tpt"] license = "MIT/Apache-2.0" readme = "README.md" @@ -17,7 +17,7 @@ name = "pyoxigraph" doctest = false [dependencies] -oxigraph = {version = "0.1.0-rc.1", features = ["sled"]} +oxigraph = {version = "0.1", path="../lib", features = ["sled"]} pyo3 = {version = "0.11", features = ["extension-module"]} [package.metadata.maturin] diff --git a/server/Cargo.toml b/server/Cargo.toml index 5c1f8465..4a838115 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.1.0-rc.1" +version = "0.1.0" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "../README.md" @@ -16,5 +16,5 @@ async-std = { version = "1", features = ["attributes"] } async-h1 = "2" http-client = { version = "4", features = ["h1_client"] } http-types = "2" -oxigraph = { version = "0.1.0-rc.1", features = ["rocksdb"] } +oxigraph = { version = "0.1", path="../lib", features = ["rocksdb"] } url = "2" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 196dad42..6525c454 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_testsuite" -version = "0.1.0-rc.1" +version = "0.1.0" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "../README.md" @@ -14,7 +14,7 @@ publish = false [dependencies] anyhow = "1" chrono = "0.4" -oxigraph = { version = "0.1.0-rc.1" } +oxigraph = { version = "0.1.0", path="../lib" } [dev-dependencies] criterion = "0.3" diff --git a/wikibase/Cargo.toml b/wikibase/Cargo.toml index 242b8c9d..d15cc6c0 100644 --- a/wikibase/Cargo.toml +++ b/wikibase/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_wikibase" -version = "0.1.0-rc.1" +version = "0.1.0" authors = ["Tpt "] license = "MIT/Apache-2.0" readme = "../README.md" @@ -17,6 +17,6 @@ async-h1 = "2" chrono = "0.4" http-client = { version = "4", features = ["h1_client"] } http-types = "2" -oxigraph = { version = "0.1.0-rc.1", features = ["rocksdb"] } +oxigraph = { version = "0.1", path ="../lib", features = ["rocksdb"] } serde_json = "1" url = "2" \ No newline at end of file