Skip to content

Commit

Permalink
ci(release): Preparing 0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub committed Oct 28, 2024
1 parent c972fa8 commit 77eb7eb
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 20 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.0.12 (2024-10-28)

### 🚀 Features

- Add initial indexer project with SurrealDB (#244)
- Republish last block to ensure no missing data (#281)
- Added publisher logging (#280)

### 🐛 Fixes

- Rollback fuel-core version to 0.38
- Added panic hooks and reworked graceful shutdown (#278)
- Missing by id subjects (#282)
- Enable publish multi ById subjects (#294)

## 0.0.11 (2024-10-15)

### 🚀 Features
Expand Down
24 changes: 12 additions & 12 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 @@ -17,7 +17,7 @@ homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/fuellabs/data-systems"
rust-version = "1.81.0"
version = "0.0.11"
version = "0.0.12"

[workspace.dependencies]
actix-cors = "0.7"
Expand Down Expand Up @@ -53,11 +53,11 @@ tracing-actix-web = "0.7"
thiserror = "1.0"

fuel-streams = { path = "crates/fuel-streams" }
fuel-data-parser = { version = "0.0.11", path = "crates/fuel-data-parser" }
fuel-streams-core = { version = "0.0.11", path = "crates/fuel-streams-core" }
fuel-streams-publisher = { version = "0.0.11", path = "crates/fuel-streams-publisher" }
fuel-streams-macros = { version = "0.0.11", path = "crates/fuel-streams-macros" }
subject-derive = { version = "0.0.11", path = "crates/fuel-streams-macros/subject-derive" }
fuel-data-parser = { version = "0.0.12", path = "crates/fuel-data-parser" }
fuel-streams-core = { version = "0.0.12", path = "crates/fuel-streams-core" }
fuel-streams-publisher = { version = "0.0.12", path = "crates/fuel-streams-publisher" }
fuel-streams-macros = { version = "0.0.12", path = "crates/fuel-streams-macros" }
subject-derive = { version = "0.0.12", 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 @@ -8,7 +8,7 @@ homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/fuellabs/data-systems"
rust-version = "1.81"
version = "0.0.11"
version = "0.0.12"

[dependencies]
displaydoc = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fuel-streams-examples"
version = "0.0.1"
version = "0.0.12"
publish = false
edition = "2021"

Expand Down

0 comments on commit 77eb7eb

Please sign in to comment.