Skip to content

Commit

Permalink
Fixed wrong version in Cargo on substreams crate
Browse files Browse the repository at this point in the history
  • Loading branch information
maoueh committed May 30, 2022
1 parent 301482b commit 59215b0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ main() {
goreleaser release $args
if [[ $? -gt 0 || "$force" == "false" ]]; then
git tag -d "$version"
exit 1
fi

cargo publish --target wasm32-unknown-unknown -p substreams substreams-macro
}

verify_github_token() {
Expand Down
2 changes: 1 addition & 1 deletion rust/substreams-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substreams-macro"
version = "0.7.0-beta"
version = "0.0.7-beta"
edition = "2018"
description = "Substream's proc macros."
authors = ["StreamingFast Contributors <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions rust/substreams/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substreams"
version = "0.7.0-beta"
version = "0.0.7-beta"
description = "Substreams SDK - A streaming data engine for The Graph - by StreamingFast"
edition = "2018"
homepage = "https://substreams.streamingfast.io/"
Expand All @@ -12,7 +12,7 @@ categories = ["api-bindings", "external-ffi-bindings", "wasm"]
rust-version = "1.60"

[dependencies]
substreams-macro = { version = "0.7.0-beta", path = "../substreams-macro" }
substreams-macro = { version = "0.0.7-beta", path = "../substreams-macro" }
prost = { version = "0.10.1" }
prost-types = "0.10.1"
hex = "0.4.3"
Expand Down

0 comments on commit 59215b0

Please sign in to comment.