Skip to content
This repository was archived by the owner on Apr 9, 2024. It is now read-only.

Commit 47d202c

Browse files
authored
chore: release v0.2.9 (#456)
1 parent 8a97d97 commit 47d202c

File tree

18 files changed

+40
-30
lines changed

18 files changed

+40
-30
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [v0.2.9](https://github.com/nervosnetwork/mercury/compare/v0.2.8...v0.2.9) (2022-09-19)
2+
3+
## 🐛 Bug Fixes
4+
5+
- fix(rpc): fix get_balance for withdrawing cell (#451)
6+
17
# [v0.2.8](https://github.com/nervosnetwork/mercury/compare/v0.2.7...v0.2.8) (2022-06-17)
28

39
## 🐛 Bug Fixes

Cargo.lock

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mercury"
33
description = "Mercury is a tool that handles application development on CKB."
4-
version = "0.2.8"
4+
version = "0.2.9"
55
authors = ["Nervos Network"]
66
edition = "2021"
77

common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "common"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
authors = ["Nervos Network"]
55
edition = "2021"
66

core/ckb-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-ckb-client"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

core/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-cli"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
authors = ["Nervos Network"]
55
edition = "2021"
66

core/inspection/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inspection"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

core/rpc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1724,7 +1724,7 @@ echo '{
17241724
{
17251725
"jsonrpc": "2.0",
17261726
"result": {
1727-
"mercury_version": "0.2.8",
1727+
"mercury_version": "0.2.9",
17281728
"ckb_node_version": "v0.101",
17291729
"network_type": "Testnet",
17301730
"enabled_extensions": []
@@ -1768,7 +1768,7 @@ echo '{
17681768
{
17691769
"jsonrpc": "2.0",
17701770
"result": {
1771-
"version": "0.2.8",
1771+
"version": "0.2.9",
17721772
"db": "PostgreSQL",
17731773
"conn_size": 1000,
17741774
"center_id": 0,

core/rpc/core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-rpc"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

core/rpc/types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-rpc-types"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

core/rpc/utility/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-rpc-utility"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

core/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-service"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
authors = ["Nervos Network"]
55
edition = "2021"
66

core/storage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-storage"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
authors = ["Nervos Network"]
55
edition = "2021"
66

core/synchronization/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "core-synchronization"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
authors = ["Nervos Network"]
55
edition = "2021"
66

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
mercury:
4242
container_name: mercury
4343
restart: always
44-
image: nervos/mercury:v0.2.8
44+
image: nervos/mercury:v0.2.9
4545
ports:
4646
- 8116:8116
4747
volumes:

docs/migration.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Migration instruction
22

3+
## 0.2.9 Release
4+
5+
No migration matters.
6+
37
## 0.2.8 Release
48

59
No migration matters.

docs/setup.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Clone the repository and checkout the tag of the version you intend to use. Usin
2727
```sh
2828
git clone https://github.com/nervosnetwork/mercury.git
2929
cd mercury
30-
git checkout v0.2.8
30+
git checkout v0.2.9
3131
```
3232

3333
### Step 3: Build Mercury
@@ -55,13 +55,13 @@ We will not be building from source, but there are still some valuable files. Cl
5555
```sh
5656
git clone https://github.com/nervosnetwork/mercury.git
5757
cd mercury
58-
git checkout v0.2.8
58+
git checkout v0.2.9
5959
```
6060

6161
### Step 3: Download and Extract a Precompiled Binary
6262

6363
```sh
64-
wget https://github.com/nervosnetwork/mercury/releases/download/v0.2.8/mercury-x86_64-unknown-linux-gnu.tar.gz
64+
wget https://github.com/nervosnetwork/mercury/releases/download/v0.2.9/mercury-x86_64-unknown-linux-gnu.tar.gz
6565
tar xzf mercury-x86_64-unknown-linux-gnu.tar.gz
6666
```
6767

protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "protocol"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)