From dc43aa0ed41356c0fa44005093431140d8b75ffb Mon Sep 17 00:00:00 2001 From: Ziyang Hu Date: Sun, 5 Feb 2023 01:07:13 +0800 Subject: [PATCH] bump versions --- Cargo.lock | 2 +- VERSION | 2 +- cozo-bin/Cargo.toml | 4 ++-- cozo-lib-c/Cargo.toml | 4 ++-- cozo-lib-java/Cargo.toml | 4 ++-- cozo-lib-nodejs/Cargo.toml | 4 ++-- cozo-lib-nodejs/README-zh.md | 2 +- cozo-lib-nodejs/package.json | 4 ++-- cozo-lib-python/Cargo.toml | 4 ++-- cozo-lib-swift/Cargo.toml | 4 ++-- cozo-lib-swift/CozoSwiftBridge.podspec | 2 +- cozo-lib-swift/README-zh.md | 2 +- cozo-lib-wasm/Cargo.toml | 4 ++-- 13 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 03c7ed01..b2957258 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -662,7 +662,7 @@ dependencies = [ [[package]] name = "cozo-bin" -version = "0.5.0" +version = "0.5.1" dependencies = [ "async-stream", "axum", diff --git a/VERSION b/VERSION index 79a2734b..5d4294b9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.0 \ No newline at end of file +0.5.1 \ No newline at end of file diff --git a/cozo-bin/Cargo.toml b/cozo-bin/Cargo.toml index d544023a..e3212ac6 100644 --- a/cozo-bin/Cargo.toml +++ b/cozo-bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cozo-bin" -version = "0.5.0" +version = "0.5.1" edition = "2021" license = "MPL-2.0" description = "Standalone Cozo database" @@ -42,7 +42,7 @@ storage-tikv = ["cozo/storage-tikv"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cozo = { version = "0.5.0", path = "../cozo-core", default-features = false } +cozo = { version = "0.5.1", path = "../cozo-core", default-features = false } clap = { version = "4.0.26", features = ["derive"] } env_logger = "0.10.0" log = "0.4.17" diff --git a/cozo-lib-c/Cargo.toml b/cozo-lib-c/Cargo.toml index f495331f..2c7725de 100644 --- a/cozo-lib-c/Cargo.toml +++ b/cozo-lib-c/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cozo_c" -version = "0.5.0" +version = "0.5.1" edition = "2021" license = "MPL-2.0" homepage = "https://www.cozodb.org" @@ -38,7 +38,7 @@ io-uring = ["cozo/io-uring"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cozo = { version = "0.5.0", path = "../cozo-core", default_features = false } +cozo = { version = "0.5.1", path = "../cozo-core", default_features = false } lazy_static = "1.4.0" [build-dependencies] diff --git a/cozo-lib-java/Cargo.toml b/cozo-lib-java/Cargo.toml index ab48bab2..82edecc6 100644 --- a/cozo-lib-java/Cargo.toml +++ b/cozo-lib-java/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cozo_java" -version = "0.5.0" +version = "0.5.1" edition = "2021" license = "MPL-2.0" homepage = "https://www.cozodb.org" @@ -40,5 +40,5 @@ io-uring = ["cozo/io-uring"] [dependencies] jni = "0.20.0" # , features = ["compact"] -cozo = { version = "0.5.0", path = "../cozo-core", default_features = false, features = ["compact"] } +cozo = { version = "0.5.1", path = "../cozo-core", default_features = false, features = ["compact"] } lazy_static = "1.4.0" diff --git a/cozo-lib-nodejs/Cargo.toml b/cozo-lib-nodejs/Cargo.toml index 017593a4..73e335a3 100644 --- a/cozo-lib-nodejs/Cargo.toml +++ b/cozo-lib-nodejs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cozo-node" -version = "0.5.0" +version = "0.5.1" description = "Cozo database for NodeJS" authors = ["Ziyang Hu"] license = "MPL-2.0" @@ -40,7 +40,7 @@ io-uring = ["cozo/io-uring"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cozo = { version = "0.5.0", path = "../cozo-core", default-features = false } +cozo = { version = "0.5.1", path = "../cozo-core", default-features = false } lazy_static = "1.4.0" crossbeam = "0.8.2" miette = "5.5.0" diff --git a/cozo-lib-nodejs/README-zh.md b/cozo-lib-nodejs/README-zh.md index 960c9813..956975ef 100644 --- a/cozo-lib-nodejs/README-zh.md +++ b/cozo-lib-nodejs/README-zh.md @@ -12,7 +12,7 @@ NodeJS 的嵌入式 [CozoDB](https://www.cozodb.org) 库。 npm install --save cozo-node ``` -安装过程中需要从 [GitHub 发布页](https://github.com/cozodb/cozo-lib-nodejs/releases/tag/0.5.0) 下载二进制文件。如果因为网络问题失败,可以使用此 [镜像](https://github.com/cozodb/cozo-lib-nodejs/releases/tag/0.4.1) ,使用方法为 +安装过程中需要从 [GitHub 发布页](https://github.com/cozodb/cozo-lib-nodejs/releases/) 下载二进制文件。如果因为网络问题失败,可以使用此 [镜像](https://github.com/cozodb/cozo-lib-nodejs/releases/) ,使用方法为 ```bash npm install --save cozo-node --cozo_node_prebuilt_binary_host_mirror=https://gitee.com/cozodb/cozo-lib-nodejs/releases/download/ diff --git a/cozo-lib-nodejs/package.json b/cozo-lib-nodejs/package.json index 51ad90f3..5f61b57d 100644 --- a/cozo-lib-nodejs/package.json +++ b/cozo-lib-nodejs/package.json @@ -1,6 +1,6 @@ { "name": "cozo-node", - "version": "0.5.0", + "version": "0.5.1", "description": "Cozo database for NodeJS", "main": "index", "files": [ @@ -43,4 +43,4 @@ "dependencies": { "@mapbox/node-pre-gyp": "^1.0.10" } -} +} \ No newline at end of file diff --git a/cozo-lib-python/Cargo.toml b/cozo-lib-python/Cargo.toml index dda9216a..ef8e5179 100644 --- a/cozo-lib-python/Cargo.toml +++ b/cozo-lib-python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cozo_py" -version = "0.5.0" +version = "0.5.1" edition = "2021" description = "Cozo database for python" authors = ["Ziyang Hu"] @@ -41,6 +41,6 @@ io-uring = ["cozo/io-uring"] [dependencies] -cozo = { version = "0.5.0", path = "../cozo-core", default-features = false } +cozo = { version = "0.5.1", path = "../cozo-core", default-features = false } pyo3 = { version = "0.17.1", features = ["extension-module", "abi3", "abi3-py37"] } miette = "5.5.0" \ No newline at end of file diff --git a/cozo-lib-swift/Cargo.toml b/cozo-lib-swift/Cargo.toml index ff7e6ff2..b6793696 100644 --- a/cozo-lib-swift/Cargo.toml +++ b/cozo-lib-swift/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cozo-swift" -version = "0.5.0" +version = "0.5.1" edition = "2021" description = "Cozo database for Swift" authors = ["Ziyang Hu"] @@ -40,5 +40,5 @@ io-uring = ["cozo/io-uring"] swift-bridge-build = "0.1.41" [dependencies] -cozo = { version = "0.5.0", path = "../cozo-core", default-features = false } +cozo = { version = "0.5.1", path = "../cozo-core", default-features = false } swift-bridge = "0.1.41" diff --git a/cozo-lib-swift/CozoSwiftBridge.podspec b/cozo-lib-swift/CozoSwiftBridge.podspec index 618cbc53..96ce7e01 100644 --- a/cozo-lib-swift/CozoSwiftBridge.podspec +++ b/cozo-lib-swift/CozoSwiftBridge.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "CozoSwiftBridge" - spec.version = "0.5.0" + spec.version = "0.5.1" spec.summary = "CozoDB for Swift" spec.description = "This library allows you to use CozoDB embedded in your Swift application" spec.homepage = "https://github.com/cozodb/cozo/" diff --git a/cozo-lib-swift/README-zh.md b/cozo-lib-swift/README-zh.md index 59a613ca..c5b1df29 100644 --- a/cozo-lib-swift/README-zh.md +++ b/cozo-lib-swift/README-zh.md @@ -16,7 +16,7 @@ target 'YourApp' do use_frameworks! - pod 'CozoSwiftBridge', '~> 0.5.0' + pod 'CozoSwiftBridge', '~> 0.5.1' end ``` diff --git a/cozo-lib-wasm/Cargo.toml b/cozo-lib-wasm/Cargo.toml index 22ae82f6..70f74a56 100644 --- a/cozo-lib-wasm/Cargo.toml +++ b/cozo-lib-wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cozo-lib-wasm" -version = "0.5.0" +version = "0.5.1" edition = "2021" description = "Cozo database for WASM" authors = ["Ziyang Hu"] @@ -17,7 +17,7 @@ default = ["console_error_panic_hook"] [dependencies] wasm-bindgen = "0.2.63" -cozo = { version = "0.5.0", path = "../cozo-core", default-features = false, features = ["wasm"] } +cozo = { version = "0.5.1", path = "../cozo-core", default-features = false, features = ["wasm"] } # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires