Skip to content

Commit f1f9f37

Browse files
authored
rust(build): v0.3.0 prep (#231)
1 parent f2835f9 commit f1f9f37

3 files changed

Lines changed: 18 additions & 9 deletions

File tree

rust/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file.
33

44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [v0.3.0] - June 12, 2025
7+
8+
- Users can now initialize `SiftStreamBuilder` from an existing instance of `SiftChannel`
9+
- Users can now call `SiftStream::add_new_flow` to generate a new flow that wasn't initially configured on their ingestion config.
10+
- Fixed a bug where the disk-based-backups manager would return an error if the backup-directory that needed to be created had intermediate directories that didn't yet exist.
11+
- Fixed a bug where changing the asset-name without changing the client key on the ingestion config didn't return an error - assuming the ingestion config with that key already exists.
12+
13+
All of these changes can be found in this [pull-request](https://github.com/sift-stack/sift/pull/229).
14+
615
## [v0.2.1] - April 28, 2025
716

817
- Downgraded `chrono` from `0.4.40` to `0.4.39` due to function naming collisions introduced

rust/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010

1111
[workspace.package]
1212
authors = ["Sift Software Engineers <engineering@siftstack.com>"]
13-
version = "0.2.1"
13+
version = "0.3.0"
1414
edition = "2024"
1515
categories = ["aerospace", "science::robotics"]
1616
homepage = "https://github.com/sift-stack/sift/tree/main/rust"
@@ -24,7 +24,7 @@ chrono = { version = "0.4.39", default-features = false, features = ["clock"] }
2424
pbjson-types = "^0.7"
2525
tonic = { version = "^0.12" }
2626

27-
sift_connect = { version = "0.2.0", path = "crates/sift_connect" }
28-
sift_rs = { version = "0.2.0", path = "crates/sift_rs" }
29-
sift_error = { version = "0.2.0", path = "crates/sift_error" }
30-
sift_stream = { version = "0.2.0", path = "crates/sift_stream" }
27+
sift_connect = { version = "0.3.0", path = "crates/sift_connect" }
28+
sift_rs = { version = "0.3.0", path = "crates/sift_rs" }
29+
sift_error = { version = "0.3.0", path = "crates/sift_error" }
30+
sift_stream = { version = "0.3.0", path = "crates/sift_stream" }

0 commit comments

Comments
 (0)