Skip to content

Commit 825b330

Browse files
committed
Releases v0.3.8
1 parent dbb0493 commit 825b330

File tree

7 files changed

+20
-14
lines changed

7 files changed

+20
-14
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [0.3.8] - 2022-10-22
2+
3+
### Changed
4+
- Python: avoid uploading debug wheels to pypi.
5+
6+
17
## [0.3.7] - 2022-10-22
28

39
### Added

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxigraph_js"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
authors = ["Tpt <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -14,7 +14,7 @@ crate-type = ["cdylib"]
1414
name = "oxigraph"
1515

1616
[dependencies]
17-
oxigraph = { version = "0.3.7", path="../lib" }
17+
oxigraph = { version = "0.3.8", path="../lib" }
1818
wasm-bindgen = "0.2"
1919
js-sys = "0.3"
2020
console_error_panic_hook = "0.1"

lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxigraph"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
authors = ["Tpt <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

python/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyoxigraph"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
authors = ["Tpt"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -16,5 +16,5 @@ name = "pyoxigraph"
1616
doctest = false
1717

1818
[dependencies]
19-
oxigraph = { version = "0.3.7", path="../lib", features = ["http_client"] }
19+
oxigraph = { version = "0.3.8", path="../lib", features = ["http_client"] }
2020
pyo3 = { version = "0.17", features = ["extension-module", "abi3-py37"] }

server/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxigraph_server"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
authors = ["Tpt <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
@@ -14,7 +14,7 @@ edition = "2021"
1414
[dependencies]
1515
oxhttp = { version = "0.1", features = ["rayon"] }
1616
clap = { version = "4", features = ["derive"] }
17-
oxigraph = { version = "0.3.7", path = "../lib", features = ["http_client"] }
17+
oxigraph = { version = "0.3.8", path = "../lib", features = ["http_client"] }
1818
sparesults = { version = "0.1.1", path = "../lib/sparesults", features = ["rdf-star"] }
1919
rand = "0.8"
2020
url = "2"

testsuite/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxigraph_testsuite"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
authors = ["Tpt <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
readme = "../README.md"
@@ -15,7 +15,7 @@ publish = false
1515
anyhow = "1"
1616
clap = { version = "4", features = ["derive"] }
1717
time = { version = "0.3", features = ["formatting"] }
18-
oxigraph = { version = "0.3.7", path="../lib" }
18+
oxigraph = { version = "0.3.8", path="../lib" }
1919
text-diff = "0.4"
2020

2121
[dev-dependencies]

0 commit comments

Comments
 (0)