Skip to content

Commit 9b9e57f

Browse files
ci(release): Release v0.0.30
1 parent d9b565a commit 9b9e57f

File tree

3 files changed

+72
-30
lines changed

3 files changed

+72
-30
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# Changelog
22

3+
## [0.0.30](https://github.com/FuelLabs/data-systems/compare/v0.0.29...v0.0.30) - 2025-05-14
4+
5+
6+
7+
8+
9+
### ⭐ Features
10+
11+
- *(repo)*: Add messages ([#465](https://github.com/FuelLabs/data-systems/pull/465)) ([7a09099](https://github.com/FuelLabs/data-systems/commit/7a09099d2ee49a82c4dad6b1567df0fd373969ce) @pedronauck)
12+
13+
### 🐛 Bug Fixes
14+
15+
- *(repo)*: Dune integration ([f487ceb](https://github.com/FuelLabs/data-systems/commit/f487cebfd873986f7312dd0d72d46cba47b2a9fb) @pedronauck)
16+
17+
- *(fuel-streams-domains)*: Adjust BlockHeaderVersion serialization ([7a421b7](https://github.com/FuelLabs/data-systems/commit/7a421b7dda0915d81cded4d9cb023614106efb89) @pedronauck)
18+
19+
- *(fuel-streams-domains)*: BlockVersion serde configuration ([b99705e](https://github.com/FuelLabs/data-systems/commit/b99705ea324a0cf98d9f02801ef3db6edc9ac199) @pedronauck)
20+
21+
- *(fuel-streams-domains)*: Improve accounts txs query performance ([#462](https://github.com/FuelLabs/data-systems/pull/462)) ([e2fb66e](https://github.com/FuelLabs/data-systems/commit/e2fb66e0ff6029e06bc9c53552db5ad1ec5039c3) @pedronauck)
22+
23+
- *(sv-publisher)*: Restore tx_pointer for transactions ([41c4cd8](https://github.com/FuelLabs/data-systems/commit/41c4cd8c56f916dbf8ad5acd379186a196f604d4) @pedronauck)
24+
25+
- *(repo)*: Builder subscriptions count error ([b5a179f](https://github.com/FuelLabs/data-systems/commit/b5a179ffa508af512e129e2312d3b0d3dd91a227) @pedronauck)
26+
27+
### 🔄 Refactor
28+
29+
- *(sv-dune)*: Improve Avro types ([#460](https://github.com/FuelLabs/data-systems/pull/460)) ([10a27dd](https://github.com/FuelLabs/data-systems/commit/10a27dd8dee72adc8e89568c7e0fcefa39246dc4) @pedronauck)
30+
31+
### 📚 Documentation
32+
33+
- *(repo)*: Improve docs on core and data-parser ([2d6401c](https://github.com/FuelLabs/data-systems/commit/2d6401c96ef55c7555cc78ddd1296b1acfd25d81) @pedronauck)
34+
35+
- *(repo)*: Improve project docs ([4ead022](https://github.com/FuelLabs/data-systems/commit/4ead022c1d4c10db4174a512d4b1864b18b0e56d) @pedronauck)
36+
37+
### 💪🏼 Contributors
38+
39+
* @pedronauck
40+
41+
42+
Want to contribute? Check out our [CONTRIBUTING.md](./CONTRIBUTING.md) guide!
43+
44+
---
345
## [0.0.29](https://github.com/FuelLabs/data-systems/compare/v0.0.28...v0.0.29) - 2025-04-18
446

547
### ⭐ Features

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ keywords = ["blockchain", "cryptocurrencies", "data-stream"]
2121
license = "Apache-2.0"
2222
repository = "https://github.com/fuellabs/data-systems"
2323
rust-version = "1.85.1"
24-
version = "0.0.29"
24+
version = "0.0.30"
2525

2626
[workspace.dependencies]
2727
anyhow = "1.0.97"
@@ -115,16 +115,16 @@ fuel-core-types = { version = "0.43.2", default-features = false, features = [
115115
] }
116116

117117
# Internal dependencies
118-
fuel-data-parser = { version = "0.0.29", path = "crates/data-parser" }
119-
fuel-message-broker = { version = "0.0.29", path = "crates/message-broker" }
120-
fuel-streams = { version = "0.0.29", path = "crates/fuel-streams" }
121-
fuel-streams-core = { version = "0.0.29", path = "crates/core" }
122-
fuel-streams-domains = { version = "0.0.29", path = "crates/domains" }
123-
fuel-streams-subject = { version = "0.0.29", path = "crates/subject" }
118+
fuel-data-parser = { version = "0.0.30", path = "crates/data-parser" }
119+
fuel-message-broker = { version = "0.0.30", path = "crates/message-broker" }
120+
fuel-streams = { version = "0.0.30", path = "crates/fuel-streams" }
121+
fuel-streams-core = { version = "0.0.30", path = "crates/core" }
122+
fuel-streams-domains = { version = "0.0.30", path = "crates/domains" }
123+
fuel-streams-subject = { version = "0.0.30", path = "crates/subject" }
124124
fuel-streams-test = { version = "0.0.22", path = "crates/test" }
125-
fuel-streams-types = { version = "0.0.29", path = "crates/types" }
126-
fuel-web-utils = { version = "0.0.29", path = "crates/web-utils" }
127-
subject-derive = { version = "0.0.29", path = "crates/subject/subject-derive" }
125+
fuel-streams-types = { version = "0.0.30", path = "crates/types" }
126+
fuel-web-utils = { version = "0.0.30", path = "crates/web-utils" }
127+
subject-derive = { version = "0.0.30", path = "crates/subject/subject-derive" }
128128

129129
# Workspace projects
130130
[workspace.metadata.cargo-machete]

0 commit comments

Comments
 (0)