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

Commit

Permalink
chore: release v0.4.4 (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanYuan authored Oct 8, 2022
1 parent 0e06dfc commit 9fdbbe4
Show file tree
Hide file tree
Showing 17 changed files with 39 additions and 29 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# [v0.4.4](https://github.com/nervosnetwork/mercury/compare/v0.4.3...v0.4.4) (2022-10-08)

## 🚀 Features

- feat(rpc): add `extra` para in rpc `get_balance` (#450)

# [v0.4.3](https://github.com/nervosnetwork/mercury/compare/v0.4.2...v0.4.3) (2022-09-19)

## 🐛 Bug Fixes
Expand Down
20 changes: 10 additions & 10 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mercury"
description = "Mercury is a tool that handles application development on CKB."
version = "0.4.3"
version = "0.4.4"
authors = ["Nervos Network"]
edition = "2021"

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

Expand Down
2 changes: 1 addition & 1 deletion core/ckb-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-ckb-client"
version = "0.4.3"
version = "0.4.4"
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 core/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-cli"
version = "0.4.3"
version = "0.4.4"
authors = ["Nervos Network"]
edition = "2021"

Expand Down
4 changes: 2 additions & 2 deletions core/rpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1798,7 +1798,7 @@ echo '{
{
"jsonrpc": "2.0",
"result": {
"mercury_version": "0.4.3",
"mercury_version": "0.4.4",
"ckb_node_version": "0.104.0 (4dd90d4 2022-07-19)",
"network_type": "Testnet",
"enabled_extensions": [ ]
Expand Down Expand Up @@ -1842,7 +1842,7 @@ echo '{
{
"jsonrpc": "2.0",
"result": {
"version": "0.4.3",
"version": "0.4.4",
"db": "PostgreSQL",
"conn_size": 100,
"center_id": 0,
Expand Down
2 changes: 1 addition & 1 deletion core/rpc/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-rpc"
version = "0.4.3"
version = "0.4.4"
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 core/rpc/types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-rpc-types"
version = "0.4.3"
version = "0.4.4"
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 core/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-service"
version = "0.4.3"
version = "0.4.4"
authors = ["Nervos Network"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion core/storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-storage"
version = "0.4.3"
version = "0.4.4"
authors = ["Nervos Network"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion core/synchronization/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "core-synchronization"
version = "0.4.3"
version = "0.4.4"
authors = ["Nervos Network"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
mercury:
container_name: mercury
restart: always
image: nervos/mercury:v0.4.3
image: nervos/mercury:v0.4.4
ports:
- 8116:8116
volumes:
Expand Down
4 changes: 4 additions & 0 deletions docs/migration.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Migration instruction

## 0.4.4 Release

No migration matters.

## 0.4.3 Release

No migration matters.
Expand Down
6 changes: 3 additions & 3 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Clone the repository and checkout the tag of the version you intend to use. Usin
```sh
git clone https://github.com/nervosnetwork/mercury.git
cd mercury
git checkout v0.4.3
git checkout v0.4.4
```

### Step 3: Build Mercury
Expand Down Expand Up @@ -55,13 +55,13 @@ We will not be building from source, but there are still some valuable files. Cl
```sh
git clone https://github.com/nervosnetwork/mercury.git
cd mercury
git checkout v0.4.3
git checkout v0.4.4
```

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

```sh
wget https://github.com/nervosnetwork/mercury/releases/download/v0.4.3/mercury-x86_64-unknown-linux-gnu.tar.gz
wget https://github.com/nervosnetwork/mercury/releases/download/v0.4.4/mercury-x86_64-unknown-linux-gnu.tar.gz
tar xzf mercury-x86_64-unknown-linux-gnu.tar.gz
```

Expand Down
6 changes: 3 additions & 3 deletions integration/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 protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "protocol"
version = "0.4.3"
version = "0.4.4"
edition = "2021"

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

0 comments on commit 9fdbbe4

Please sign in to comment.