Skip to content

Commit

Permalink
ci(release): Preparing v0.0.4 (#174)
Browse files Browse the repository at this point in the history
ci(release): Preparing 0.0.4

Co-authored-by: GitHub <[email protected]>
  • Loading branch information
fuel-service-user and GitHub authored Aug 24, 2024
1 parent e003d74 commit bc001ab
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 17 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## 0.0.4 (2024-08-24)

### 🚀 Features

- Add NATS POC version (#12)
- Bootstrap the stream from Fuel nodes storage (#22)
- Add nkey as auth mechanism (#32)
- Add first version of streams-core crate (#61)
- Add nats publishing deduplication logic and tests (#107)
- Add Client (#114)
- Data-parser implementation (#111)
- Add Stream and Filter (#125)

### 🐛 Fixes

- Use u32 for block height to avoid hex outputs in block subjects (#66)
- Publish compact json rather than pretty json (#105)
- Temporary solution for nats storage size (#120)
- Block compress for bincode (#122)
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/fuellabs/data-systems"
version = "0.0.3"
version = "0.0.4"

[workspace.dependencies]
anyhow = "1.0"
Expand Down Expand Up @@ -41,11 +41,11 @@ tracing = "0.1.40"
thiserror = "1.0"

fuel-streams = { path = "crates/fuel-streams" }
fuel-data-parser = { version = "0.0.3", path = "crates/fuel-data-parser" }
fuel-streams-core = { version = "0.0.3", path = "crates/fuel-streams-core" }
fuel-streams-publisher = { version = "0.0.3", path = "crates/fuel-streams-publisher" }
fuel-streams-macros = { version = "0.0.3", path = "crates/fuel-streams-macros" }
subject-derive = { version = "0.0.3", path = "crates/fuel-streams-macros/subject-derive" }
fuel-data-parser = { version = "0.0.4", path = "crates/fuel-data-parser" }
fuel-streams-core = { version = "0.0.4", path = "crates/fuel-streams-core" }
fuel-streams-publisher = { version = "0.0.4", path = "crates/fuel-streams-publisher" }
fuel-streams-macros = { version = "0.0.4", path = "crates/fuel-streams-macros" }
subject-derive = { version = "0.0.4", path = "crates/fuel-streams-macros/subject-derive" }

# Workspace projects
[workspace.metadata.cargo-machete]
Expand Down
2 changes: 1 addition & 1 deletion crates/fuel-streams/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/fuellabs/data-systems"
version = "0.0.3"
version = "0.0.4"

[dependencies]
async-trait = { workspace = true }
Expand Down

0 comments on commit bc001ab

Please sign in to comment.