Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.3.0 #104

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ jobs:
id: changelog_reader
with:
version: ${{ steps.version.outputs.value }}
- name: download artifacts
uses: actions/download-artifact@v4
- name: install rust
uses: dtolnay/rust-toolchain@stable
- name: publish to crates.io
run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }}
- name: create release
uses: softprops/action-gh-release@v2
with:
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

All notable changes to this project will be documented in this file.

## [0.3.0] - 2024-12-11

### Features

- Return reconfigured stream ([#95](https://github.com/s2-streamstore/s2-cli/issues/95))
- Implement `SequencedRecord::as_command_record` ([#96](https://github.com/s2-streamstore/s2-cli/issues/96))
- Make protoc requirement optional ([#103](https://github.com/s2-streamstore/s2-cli/issues/103))

### Bug Fixes

- Tonic-side-effect version ([#102](https://github.com/s2-streamstore/s2-cli/issues/102))

### Miscellaneous Tasks

- Update proto and associated types for non-optional `start_seq_num` ([#97](https://github.com/s2-streamstore/s2-cli/issues/97))
- `CommandRecord::Fence` requires `FencingToken` even if empty ([#98](https://github.com/s2-streamstore/s2-cli/issues/98))
- Rm serde ([#99](https://github.com/s2-streamstore/s2-cli/issues/99))
- Lower `max_append_inflight_bytes` default
- Move sync_docs to separate repository ([#101](https://github.com/s2-streamstore/s2-cli/issues/101))

## [0.2.0] - 2024-12-04

### Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "streamstore"
description = "Rust SDK for S2"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
keywords = ["wal", "grpc", "s2", "log", "stream"]
Expand Down
Loading