Skip to content

Commit 37b5fc2

Browse files
Release v0.21.0 (#259)
* ci * update to github releases * temp to run only PR one * chore: bump version to 0.21.0 and update changelog * update ci * update changelog.mdx * chore: bump version to 0.21.0 and update changelog * update ci * update ci * chore: bump version to 0.21.0 and update changelog * update ci * chore: bump version to 0.21.0 and update changelog * update ci * chore: bump version to 0.21.0 and update changelog * update ci * chore: bump version to 0.21.0 and update changelog * update ci * chore: bump version to 0.21.0 and update changelog * update ci * update ci * format * chore: bump version to 0.21.0 and update changelog * update ci * update ci * chore: bump version to 0.21.0 and update changelog * update ci * update ci * chore: bump version to 0.21.0 and update changelog * update ci * update ci * chore: bump version to 0.21.0 and update changelog * update ci * update ci * chore: bump version to 0.21.0 and update changelog * update ci * update ci * update ci --------- Co-authored-by: GitHub Action <[email protected]>
1 parent b1172bc commit 37b5fc2

File tree

9 files changed

+521
-76
lines changed

9 files changed

+521
-76
lines changed

.github/workflows/ci-cd.yml

Lines changed: 494 additions & 54 deletions
Large diffs are not rendered by default.

Cargo.lock

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

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,9 @@ or spin up a new no-code project using the make commands.
164164

165165
## Release
166166

167-
To release a new rindexer you have to do a few things:
168-
169-
1) Checkout release/x.x.x branch depending on the next version number
170-
2) Update the changelog in documentation/docs/pages/docs/introduction/changelog.mdx
171-
3) Open up the cli folder and go to the Cargo.toml and update the version number
172-
4) Push the branch up to GitHub which will queue a build on the CI
173-
5) Once the build is successful you can open a PR merging the release branch into master
174-
6) Merge will auto deploy the release
167+
To release a new rindexer:
175168

169+
1. Checkout `release/x.x.x` branch depending on the next version number
170+
2. Push the branch to GitHub which will queue a build on the CI
171+
3. Once build is successful, a PR will be automatically created with updated changelog and version
172+
4. Review and merge the auto-generated PR - this will auto-deploy the release with binaries built from the release branch

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rindexer_cli"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
edition = "2021"
55
description = "A no-code or framework to build blazing fast EVM indexers - built in rust."
66
license = "MIT"

cli/src/commands/codegen.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,7 @@ pub async fn handle_codegen_command(
5656
}
5757
CodegenSubcommands::Indexer => {
5858
generate_rindexer_handlers(manifest, &rindexer_yaml_path, true).map_err(|e| {
59-
print_error_message(&format!(
60-
"Failed to generate rindexer indexer handlers: {e}"
61-
));
59+
print_error_message(&format!("Failed to generate rindexer indexer handlers: {e}"));
6260
e
6361
})?;
6462
format_all_files_for_project(project_path);

cli/src/console.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ pub fn prompt_for_input_list(
7878
} else {
7979
println!(
8080
"{}",
81-
format!("Invalid option. Please choose one of the following: {options_str}")
82-
.red()
81+
format!("Invalid option. Please choose one of the following: {options_str}").red()
8382
);
8483
}
8584
}

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rindexer"
3-
version = "0.20.0"
3+
version = "0.21.0"
44
edition = "2021"
55
description = "A no-code or framework to build blazing fast EVM indexers - built in rust."
66
license = "MIT"

documentation/docs/pages/docs/changelog.mdx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
### Bug fixes
1010
-------------------------------------------------
11-
- fix: resolve multi-network dependency issues
1211

1312
### Breaking changes
1413
-------------------------------------------------
@@ -18,6 +17,20 @@
1817

1918
all release branches are deployed through `release/VERSION_NUMBER` branches
2019

20+
# 0.21.0-beta - 15th July 2025
21+
22+
github branch - https://github.com/joshstevens19/rindexer/tree/release/0.21.0
23+
24+
- linux binary - https://github.com/joshstevens19/rindexer/releases/download/v0.21.0/rindexer_linux-amd64.tar.gz
25+
- mac apple silicon binary - https://github.com/joshstevens19/rindexer/releases/download/v0.21.0/rindexer_darwin-arm64.tar.gz
26+
- mac apple intel binary - https://github.com/joshstevens19/rindexer/releases/download/v0.21.0/rindexer_darwin-amd64.tar.gz
27+
- windows binary - https://github.com/joshstevens19/rindexer/releases/download/v0.21.0/rindexer_win32-amd64.zip
28+
29+
### Bug fixes
30+
-------------------------------------------------
31+
- fix: resolve multi-network dependency issues
32+
33+
2134
# 0.20.0-beta - 10th July 2025
2235

2336
github branch - https://github.com/joshstevens19/rindexer/tree/release/0.20.0

rindexer_rust_playground/src/main.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,8 @@ async fn main() {
4444
_ => {}
4545
}
4646
}
47-
48-
println!(
49-
"Starting rindexer rust project - graphql {enable_graphql} indexer {enable_indexer}"
50-
);
47+
48+
println!("Starting rindexer rust project - graphql {enable_graphql} indexer {enable_indexer}");
5149

5250
let path = env::current_dir();
5351
match path {

0 commit comments

Comments
 (0)