Skip to content

Commit

Permalink
release 0.3.0 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteregrets authored Dec 11, 2024
1 parent cb62572 commit 927f3d3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
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

0 comments on commit 927f3d3

Please sign in to comment.