Skip to content

Commit

Permalink
build: update version to 0.1.0
Browse files Browse the repository at this point in the history
The crate is ready for release, but considering that is hasn't
been yet tested by public, and UDFs are still experimental
in Scylla, we're not releasing a major version yet.
  • Loading branch information
wmitros committed Feb 15, 2023
1 parent 4094ebb commit 23b0aac
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Rust helper library for Scylla UDFs

This crate allows writing pure Rust functions that can be used as Scylla UDFs.

**Note: this crate is officially supported and ready to use. However, UDFs are still an experimental feature in ScyllaDB, and the crate has not been widely used, which is why it's still in beta and its API is subject to change. We appreciate bug reports and pull requests!**

## Usage

### Prerequisites
Expand Down
6 changes: 2 additions & 4 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
[package]
name = "examples"
version = "0.0.0"
edition.workspace = true
version.workspace = true
repository.workspace = true
license.workspace = true
rust-version.workspace = true
publish = false

[dependencies]
chrono = "0.4"
bigdecimal = "0.2.0"
num-bigint = "0.3"
scylla-udf = { workspace = true }
scylla-udf = { version = "0.1.0", path = "../scylla-udf" }
uuid = "1.0"

[[example]]
Expand Down
2 changes: 1 addition & 1 deletion scylla-udf-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "scylla-udf-macros"
version = "0.1.0"
edition.workspace = true
version.workspace = true
repository.workspace = true
license.workspace = true
rust-version.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions scylla-udf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "scylla-udf"
version = "0.1.0"
edition.workspace = true
version.workspace = true
repository.workspace = true
license.workspace = true
rust-version.workspace = true
Expand All @@ -16,6 +16,6 @@ bytes = "1.2.1"
chrono = "0.4"
libc = "0.2.119"
num-bigint = "0.3"
scylla-udf-macros = { workspace = true }
scylla-udf-macros = { version = "0.1.0", path = "../scylla-udf-macros" }
scylla-cql = "0.0.4"
uuid = "1.0"
6 changes: 2 additions & 4 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
[package]
name = "tests"
version = "0.0.0"
edition.workspace = true
version.workspace = true
repository.workspace = true
license.workspace = true
rust-version.workspace = true
publish = false

[dependencies]
scylla-udf = { workspace = true }
scylla-udf = { version = "0.1.0", path = "../scylla-udf" }
bigdecimal = "0.2.0"
bytes = "1.2.1"
chrono = "0.4"
Expand Down

0 comments on commit 23b0aac

Please sign in to comment.