prepare for 0.4

main
Ziyang Hu 2 years ago
parent adcea96088
commit 2ca3ed79d8

1
.gitignore vendored

@ -36,3 +36,4 @@ release/
release* release*
Cross.toml Cross.toml
/tools /tools
*.cozo_auth

@ -1 +1 @@
0.3.0 0.4.0

@ -1,6 +1,6 @@
[package] [package]
name = "cozo" name = "cozo"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
description = "A general-purpose, transactional, relational database that uses Datalog and focuses on graph data and algorithms" description = "A general-purpose, transactional, relational database that uses Datalog and focuses on graph data and algorithms"
authors = ["Ziyang Hu"] authors = ["Ziyang Hu"]

@ -1,6 +1,6 @@
[package] [package]
name = "cozo_c" name = "cozo_c"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
homepage = "https://github.com/cozodb/cozo" homepage = "https://github.com/cozodb/cozo"
@ -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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
cozo = { version = "0.3.0", path = "../cozo-core", default_features = false } cozo = { version = "0.4.0", path = "../cozo-core", default_features = false }
lazy_static = "1.4.0" lazy_static = "1.4.0"
[build-dependencies] [build-dependencies]

@ -1,6 +1,6 @@
[package] [package]
name = "cozo_java" name = "cozo_java"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
homepage = "https://github.com/cozodb/cozo" homepage = "https://github.com/cozodb/cozo"
@ -40,5 +40,5 @@ io-uring = ["cozo/io-uring"]
[dependencies] [dependencies]
jni = "0.20.0" jni = "0.20.0"
# , features = ["compact"] # , features = ["compact"]
cozo = { version = "0.3.0", path = "../cozo-core", default_features = false, features = ["compact"] } cozo = { version = "0.4.0", path = "../cozo-core", default_features = false, features = ["compact"] }
lazy_static = "1.4.0" lazy_static = "1.4.0"

@ -1,6 +1,6 @@
[package] [package]
name = "cozo-node" name = "cozo-node"
version = "0.3.0" version = "0.4.0"
description = "Cozo database for NodeJS" description = "Cozo database for NodeJS"
authors = ["Ziyang Hu"] authors = ["Ziyang Hu"]
license = "MPL-2.0" 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
cozo = { version = "0.3.0", path = "../cozo-core", default-features = false } cozo = { version = "0.4.0", path = "../cozo-core", default-features = false }
lazy_static = "1.4.0" lazy_static = "1.4.0"
[dependencies.neon] [dependencies.neon]

@ -1,6 +1,6 @@
{ {
"name": "cozo-node", "name": "cozo-node",
"version": "0.3.1", "version": "0.4.0",
"description": "Cozo database for NodeJS", "description": "Cozo database for NodeJS",
"main": "index", "main": "index",
"files": [ "files": [

@ -1,6 +1,6 @@
[package] [package]
name = "cozo_py" name = "cozo_py"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
description = "Cozo database for python" description = "Cozo database for python"
authors = ["Ziyang Hu"] authors = ["Ziyang Hu"]
@ -41,5 +41,5 @@ io-uring = ["cozo/io-uring"]
[dependencies] [dependencies]
cozo = { version = "0.3.0", path = "../cozo-core", default-features = false } cozo = { version = "0.4.0", path = "../cozo-core", default-features = false }
pyo3 = { version = "0.17.1", features = ["extension-module", "abi3", "abi3-py37"] } pyo3 = { version = "0.17.1", features = ["extension-module", "abi3", "abi3-py37"] }

@ -1,6 +1,6 @@
[package] [package]
name = "cozo-swift" name = "cozo-swift"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
description = "Cozo database for Swift" description = "Cozo database for Swift"
authors = ["Ziyang Hu"] authors = ["Ziyang Hu"]
@ -40,5 +40,5 @@ io-uring = ["cozo/io-uring"]
swift-bridge-build = "0.1.41" swift-bridge-build = "0.1.41"
[dependencies] [dependencies]
cozo = { version = "0.3.0", path = "../cozo-core", default-features = false } cozo = { version = "0.4.0", path = "../cozo-core", default-features = false }
swift-bridge = "0.1.41" swift-bridge = "0.1.41"

@ -1,6 +1,6 @@
Pod::Spec.new do |spec| Pod::Spec.new do |spec|
spec.name = "CozoSwiftBridge" spec.name = "CozoSwiftBridge"
spec.version = "0.3.0" spec.version = "0.4.0"
spec.summary = "CozoDB for Swift" spec.summary = "CozoDB for Swift"
spec.description = "This library allows you to use CozoDB embedded in your Swift application" spec.description = "This library allows you to use CozoDB embedded in your Swift application"
spec.homepage = "https://github.com/cozodb/cozo/" spec.homepage = "https://github.com/cozodb/cozo/"

@ -22,7 +22,7 @@ see the Building section below.
target 'YourApp' do target 'YourApp' do
use_frameworks! use_frameworks!
pod 'CozoSwiftBridge', '~> 0.3.0' pod 'CozoSwiftBridge', '~> 0.4.0'
end end
``` ```

@ -22,7 +22,7 @@ see the Building section below.
target 'YourApp' do target 'YourApp' do
use_frameworks! use_frameworks!
pod 'CozoSwiftBridge', '~> 0.3.0' pod 'CozoSwiftBridge', '~> 0.4.0'
end end
``` ```

@ -1,6 +1,6 @@
[package] [package]
name = "cozo-lib-wasm" name = "cozo-lib-wasm"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
description = "Cozo database for WASM" description = "Cozo database for WASM"
authors = ["Ziyang Hu"] authors = ["Ziyang Hu"]
@ -17,7 +17,7 @@ default = ["console_error_panic_hook"]
[dependencies] [dependencies]
wasm-bindgen = "0.2.63" wasm-bindgen = "0.2.63"
cozo = { version = "0.3.0", path = "../cozo-core", default-features = false, features = ["wasm"] } cozo = { version = "0.4.0", path = "../cozo-core", default-features = false, features = ["wasm"] }
# The `console_error_panic_hook` crate provides better debugging of panics by # The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires # logging them with `console.error`. This is great for development, but requires

@ -26,6 +26,15 @@
</head> </head>
<body> <body>
<noscript>You need to enable JavaScript to run this app.</noscript> <noscript>You need to enable JavaScript to run this app.</noscript>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-S7J5ENQE6M"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-S7J5ENQE6M');
</script>
<div id="root"></div> <div id="root"></div>
<!-- <!--
This HTML file is a template. This HTML file is a template.

@ -1,6 +1,6 @@
[package] [package]
name = "cozoserver" name = "cozoserver"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
license = "MPL-2.0" license = "MPL-2.0"
description = "Standalone Cozo database" 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 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
cozo = { version = "0.3.0", path = "../cozo-core", default-features = false } cozo = { version = "0.4.0", path = "../cozo-core", default-features = false }
clap = { version = "4.0.26", features = ["derive"] } clap = { version = "4.0.26", features = ["derive"] }
rouille = "3.5.0" rouille = "3.5.0"
env_logger = "0.10.0" env_logger = "0.10.0"

Loading…
Cancel
Save