Skip to content

Commit

Permalink
ci(release): Preparing 0.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub committed Jan 19, 2025
1 parent bdeddd7 commit 35d5616
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 33 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.0.17 (2025-01-19)

### 🚀 Features

- Added web-utils crate and added telemetry to all svc (#373)
- Database integration (#374)
- Added api key auth (#377)
- Add db transaction for each block insertion (#378)
- Added load-tester and benchmarks (#379)

### 🐛 Fixes

- Publish in order strictly (#372)
- Never panic when sending wrong data format (#380)
- Adjust historical streaming to stream block by block

## 0.0.16 (2024-12-28)

### 🚀 Features
Expand Down
36 changes: 18 additions & 18 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/fuellabs/data-systems"
rust-version = "1.81.0"
version = "0.0.16"
version = "0.0.17"

[workspace.dependencies]
actix-cors = "0.7"
Expand Down Expand Up @@ -79,20 +79,20 @@ sqlx = { version = "0.8.3", default-features = false, features = [
"macros",
] }

fuel-data-parser = { version = "0.0.16", path = "crates/fuel-data-parser" }
fuel-message-broker = { version = "0.0.16", path = "crates/fuel-message-broker" }
fuel-streams = { version = "0.0.16", path = "crates/fuel-streams" }
fuel-streams-core = { version = "0.0.16", path = "crates/fuel-streams-core" }
fuel-streams-domains = { version = "0.0.16", path = "crates/fuel-streams-domains" }
fuel-streams-macros = { version = "0.0.16", path = "crates/fuel-streams-macros" }
fuel-streams-store = { version = "0.0.16", path = "crates/fuel-streams-store" }
fuel-streams-types = { version = "0.0.16", path = "crates/fuel-streams-types" }
fuel-data-parser = { version = "0.0.17", path = "crates/fuel-data-parser" }
fuel-message-broker = { version = "0.0.17", path = "crates/fuel-message-broker" }
fuel-streams = { version = "0.0.17", path = "crates/fuel-streams" }
fuel-streams-core = { version = "0.0.17", path = "crates/fuel-streams-core" }
fuel-streams-domains = { version = "0.0.17", path = "crates/fuel-streams-domains" }
fuel-streams-macros = { version = "0.0.17", path = "crates/fuel-streams-macros" }
fuel-streams-store = { version = "0.0.17", path = "crates/fuel-streams-store" }
fuel-streams-types = { version = "0.0.17", path = "crates/fuel-streams-types" }
fuel-streams-test = { version = "0.0.16", path = "crates/fuel-streams-test" }
fuel-web-utils = { version = "0.0.16", path = "crates/fuel-web-utils" }
subject-derive = { version = "0.0.16", path = "crates/fuel-streams-macros/subject-derive" }
sv-consumer = { version = "0.0.16", path = "crates/sv-consumer" }
sv-publisher = { version = "0.0.16", path = "crates/sv-publisher" }
sv-webserver = { version = "0.0.16", path = "crates/sv-webserver" }
fuel-web-utils = { version = "0.0.17", path = "crates/fuel-web-utils" }
subject-derive = { version = "0.0.17", path = "crates/fuel-streams-macros/subject-derive" }
sv-consumer = { version = "0.0.17", path = "crates/sv-consumer" }
sv-publisher = { version = "0.0.17", path = "crates/sv-publisher" }
sv-webserver = { version = "0.0.17", path = "crates/sv-webserver" }

# 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 @@ -8,7 +8,7 @@ homepage = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }
version = "0.0.16"
version = "0.0.17"

[dependencies]
fuel-streams-core = { workspace = true }
Expand Down

0 comments on commit 35d5616

Please sign in to comment.