Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump BMV versions #40

Merged
merged 2 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bmv/bsc2/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '0.1.0'
version = '0.5.0'

dependencies {
compileOnly("foundation.icon:javaee-api:$javaeeVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ public BTPMessageVerifier(Address _bmc, BigInteger _chainId, @Optional byte[] _h
}
}

@External(readonly = true)
public String getVersion() {
return "0.5.0";
}

@External(readonly = true)
public BMVStatus getStatus() {
MerkleTreeAccumulator mta = this.mta.get();
Expand Down
2 changes: 1 addition & 1 deletion bmv/btpblock/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '0.1.0'
version = '0.5.0'

dependencies {
compileOnly("foundation.icon:javaee-api:$javaeeVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,11 @@ public byte[][] handleRelayMessage(String _bmc, String _prev, BigInteger _seq, b
return ret;
}

@External(readonly = true)
public String getVersion() {
return "0.5.0";
}

@External(readonly = true)
public BMVStatus getStatus() {
var properties = getProperties();
Expand Down
2 changes: 1 addition & 1 deletion bmv/eth2/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = '0.4.3'
version = '0.5.0'

dependencies {
compileOnly("foundation.icon:javaee-api:$javaeeVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public BMVStatus getStatus() {

@External(readonly = true)
public String getVersion() {
return "0.4.3";
return "0.5.0";
}

BMVProperties getProperties() {
Expand Down