Skip to content

Commit

Permalink
chore: bump version to 1.8.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
jjyr committed Dec 12, 2022
1 parent 9344bd3 commit 718c895
Show file tree
Hide file tree
Showing 31 changed files with 76 additions and 57 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com).

## [Unreleased]

## [v1.8.0-rc1] - 2022-12-09

In this version, an upgrading of on-chain scripts is included:

- feat: optimize Godwoken finality mechanism [#836](https://github.com/godwokenrises/godwoken/pull/836)
- feat: deprecate verifications for state_checkpoint_list and prev_state_checkpoint [#883](https://github.com/godwokenrises/godwoken/pull/883)

We also introduce a change to activate the new behavior.

- feat: determine global state version according to fork height[#858](https://github.com/godwokenrises/godwoken/pull/858)

Other changes:

- perf: optional SMT trie feature and migrate command [#859](https://github.com/godwokenrises/godwoken/pull/882)
- feat: optimized trace and metrics [#865](https://github.com/godwokenrises/godwoken/pull/865)
- fix(withdrawal): finalized withdrawal take longer time to unlock [#892](https://github.com/godwokenrises/godwoken/pull/892)
- chore(CI): add docker-prebuilds into monorepo [#885](https://github.com/godwokenrises/godwoken/pull/885)
- feat: support non-x86 build [#882](https://github.com/godwokenrises/godwoken/pull/882)

## [v1.7.3] - 2022-11-27

- config: deny unknown fields in the config toml file [#862](https://github.com/godwokenrises/godwoken/pull/862)
Expand Down
56 changes: 28 additions & 28 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/benches/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-benches"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"
description = "Godwoken benchmarks."
Expand Down
2 changes: 1 addition & 1 deletion crates/block-producer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-block-producer"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion crates/chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-chain"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/challenge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-challenge"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-common"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-config"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-db"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/dynamic-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-dynamic-config"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-generator"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/godwoken-bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godwoken-bin"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion crates/hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-hash"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/jsonrpc-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-jsonrpc-types"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/mem-pool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-mem-pool"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion crates/metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-metrics"
version = "1.7.1"
version = "1.8.0-rc1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion crates/p2p-network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gw-p2p-network"
version = "1.7.3"
version = "1.8.0-rc1"
authors = ["Nervos Network"]
edition = "2018"

Expand Down
Loading

0 comments on commit 718c895

Please sign in to comment.