From 1f3f8e545cddc62ed63a607701df922f356127d0 Mon Sep 17 00:00:00 2001
From: Tpt <thomaspt@hotmail.fr>
Date: Wed, 29 Nov 2023 17:52:20 +0100
Subject: [PATCH] Releases v0.3.21

---
 CHANGELOG.md             |  8 ++++++++
 Cargo.lock               | 10 +++++-----
 js/Cargo.toml            |  4 ++--
 lib/Cargo.toml           |  4 ++--
 oxrocksdb-sys/Cargo.toml |  2 +-
 python/Cargo.toml        |  4 ++--
 server/Cargo.toml        |  4 ++--
 7 files changed, 22 insertions(+), 14 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 789913ca..b55cab3c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## [0.3.21] - 2023-11-29
+
+### Changed
+- Bulk loader: do not fail when loading empty files.
+- Python: fixes source distribution.
+- Upgrades RocksDB to 7.8.1.
+
+
 ## [0.3.20] - 2023-10-23
 
 ### Changed
diff --git a/Cargo.lock b/Cargo.lock
index e3171497..23086aeb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -926,7 +926,7 @@ dependencies = [
 
 [[package]]
 name = "oxigraph"
-version = "0.3.20"
+version = "0.3.21"
 dependencies = [
  "criterion",
  "digest",
@@ -958,7 +958,7 @@ dependencies = [
 
 [[package]]
 name = "oxigraph_js"
-version = "0.3.20"
+version = "0.3.21"
 dependencies = [
  "console_error_panic_hook",
  "js-sys",
@@ -968,7 +968,7 @@ dependencies = [
 
 [[package]]
 name = "oxigraph_server"
-version = "0.3.20"
+version = "0.3.21"
 dependencies = [
  "anyhow",
  "assert_cmd",
@@ -1028,7 +1028,7 @@ dependencies = [
 
 [[package]]
 name = "oxrocksdb-sys"
-version = "0.3.20"
+version = "0.3.21"
 dependencies = [
  "bindgen",
  "cc",
@@ -1279,7 +1279,7 @@ dependencies = [
 
 [[package]]
 name = "pyoxigraph"
-version = "0.3.20"
+version = "0.3.21"
 dependencies = [
  "oxigraph",
  "pyo3",
diff --git a/js/Cargo.toml b/js/Cargo.toml
index 208a23c3..0bd7dee4 100644
--- a/js/Cargo.toml
+++ b/js/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "oxigraph_js"
-version = "0.3.20"
+version = "0.3.21"
 authors = ["Tpt <thomas@pellissier-tanon.fr>"]
 license = "MIT OR Apache-2.0"
 readme = "README.md"
@@ -14,7 +14,7 @@ crate-type = ["cdylib"]
 name = "oxigraph"
 
 [dependencies]
-oxigraph = { version = "0.3.20", path="../lib" }
+oxigraph = { version = "0.3.21", 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 371e60c5..e7b88816 100644
--- a/lib/Cargo.toml
+++ b/lib/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "oxigraph"
-version = "0.3.20"
+version = "0.3.21"
 authors = ["Tpt <thomas@pellissier-tanon.fr>"]
 license = "MIT OR Apache-2.0"
 readme = "README.md"
@@ -46,7 +46,7 @@ sparesults = { version = "0.1.8", path="sparesults", features = ["rdf-star"] }
 
 [target.'cfg(not(target_family = "wasm"))'.dependencies]
 libc = "0.2"
-oxrocksdb-sys = { version = "0.3.20", path="../oxrocksdb-sys" }
+oxrocksdb-sys = { version = "0.3.21", path="../oxrocksdb-sys" }
 oxhttp = { version = "0.1", optional = true }
 
 [target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
diff --git a/oxrocksdb-sys/Cargo.toml b/oxrocksdb-sys/Cargo.toml
index 5aa666bf..ada54b93 100644
--- a/oxrocksdb-sys/Cargo.toml
+++ b/oxrocksdb-sys/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "oxrocksdb-sys"
-version = "0.3.20"
+version = "0.3.21"
 authors = ["Tpt <thomas@pellissier-tanon.fr>"]
 license = "GPL-2.0 OR Apache-2.0"
 repository = "https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys"
diff --git a/python/Cargo.toml b/python/Cargo.toml
index c9abd2fc..3f7e9fc5 100644
--- a/python/Cargo.toml
+++ b/python/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "pyoxigraph"
-version = "0.3.20"
+version = "0.3.21"
 authors = ["Tpt"]
 license = "MIT OR Apache-2.0"
 readme = "README.md"
@@ -19,5 +19,5 @@ doctest = false
 abi3 = ["pyo3/abi3-py37"]
 
 [dependencies]
-oxigraph = { version = "0.3.20", path="../lib", features = ["http_client"] }
+oxigraph = { version = "0.3.21", path="../lib", features = ["http_client"] }
 pyo3 = { version = "0.19", features = ["extension-module"] }
diff --git a/server/Cargo.toml b/server/Cargo.toml
index e46ddaba..3444a8e2 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "oxigraph_server"
-version = "0.3.20"
+version = "0.3.21"
 authors = ["Tpt <thomas@pellissier-tanon.fr>"]
 license = "MIT OR Apache-2.0"
 readme = "README.md"
@@ -17,7 +17,7 @@ anyhow = "1"
 oxhttp = { version = "0.1", features = ["rayon"] }
 clap = { version = "=4.0", features = ["derive"] }
 clap_lex = "=0.3.0"
-oxigraph = { version = "0.3.20", path = "../lib", features = ["http_client"] }
+oxigraph = { version = "0.3.21", path = "../lib", features = ["http_client"] }
 sparesults = { version = "0.1.8", path = "../lib/sparesults", features = ["rdf-star"] }
 rand = "0.8"
 url = "2"