Skip to content

Commit 02b8970

Browse files
valkey-bloom release 1.0.0-ga (#60)
Signed-off-by: Karthik Subbarao <[email protected]>
1 parent e5ffd70 commit 02b8970

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: ci
22

33
on:
4+
schedule:
5+
- cron: '00 22 * * *'
46
push:
57
pull_request:
68

00-RELEASENOTES

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Valkey Bloom 1.0.0 release notes
22
========================
33

4+
================================================================================
5+
Valkey Bloom 1.0.0 GA - Released Tue 01 April 2025
6+
================================================================================
7+
This is the first release of valkey-bloom 1.0 that brings bloom filters as a new data type to Valkey and provides both scalable and non-scalable bloom filter variants. It is API compatible with the bloom filter command syntax used across popular Valkey client libraries (as well as the equivalent Redis libraries).
8+
valkey-bloom 1.0 can be built to be compatible with Valkey 8.0 and 8.1 versions.
9+
410
================================================================================
511
Valkey Bloom 1.0.0 RC1 - Released Fri 21 Mar 2025
612
================================================================================

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "valkey-bloom"
33
authors = ["Karthik Subbarao"]
4-
version = "1.0.0-rc1"
4+
version = "1.0.0"
55
edition = "2021"
66
license = "BSD-3-Clause"
77
repository = "https://github.com/valkey-io/valkey-bloom"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub const MODULE_VERSION: i32 = 10000;
1818
// In unstable branch the status is always "dev".
1919
// During release process the status will be set to rc1,rc2...rcN.
2020
// When the version is released the status will be "ga".
21-
pub const MODULE_RELEASE_STAGE: &str = "rc1";
21+
pub const MODULE_RELEASE_STAGE: &str = "ga";
2222

2323
fn initialize(ctx: &Context, _args: &[ValkeyString]) -> Status {
2424
let ver = ctx

0 commit comments

Comments
 (0)