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

Commit 9e52e63

Browse files
authored
chore: release v0.3.3 (#437)
1 parent ff14619 commit 9e52e63

File tree

20 files changed

+56
-34
lines changed

20 files changed

+56
-34
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# [v0.3.3](https://github.com/nervosnetwork/mercury/compare/v0.3.2...v0.3.3) (2022-06-17)
2+
3+
## 🐛 Bug Fixes
4+
5+
- fix(rpc): transactions generated by rpc `build_dao_claim_transaction` will cause random `-14` dao script validation error (#434)
6+
7+
# [v0.3.2](https://github.com/nervosnetwork/mercury/compare/v0.3.1...v0.3.2) (2022-05-18)
8+
9+
## 🧰 Maintenance
10+
11+
- un-limit http server response body size (#415)
12+
- chore: update the ckb component in the docker-compose.yml to 0.103 (#409)
13+
- chore: update config based on Recommended Hardware (#404)
14+
- chore: add change log for 0.3 branch (#402)
15+
16+
## 🐛 Bug Fixes
17+
18+
- fix bugs (#415)
119

220
# [v0.3.1](https://github.com/nervosnetwork/mercury/compare/v0.3.0...v0.3.1) (2022-03-30)
321

Cargo.lock

+14-14
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.3.2"
4+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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
@@ -1749,7 +1749,7 @@ echo '{
17491749
{
17501750
"jsonrpc": "2.0",
17511751
"result": {
1752-
"mercury_version": "0.3.2",
1752+
"mercury_version": "0.3.3",
17531753
"ckb_node_version": "v0.101",
17541754
"network_type": "Testnet",
17551755
"enabled_extensions": []
@@ -1793,7 +1793,7 @@ echo '{
17931793
{
17941794
"jsonrpc": "2.0",
17951795
"result": {
1796-
"version": "0.3.2",
1796+
"version": "0.3.3",
17971797
"db": "PostgreSQL",
17981798
"conn_size": 1000,
17991799
"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.3.2"
3+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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.3.2"
3+
version = "0.3.3"
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.3.2
44+
image: nervos/mercury:v0.3.3
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.3.3 Release
4+
5+
No migration matters.
6+
37
## 0.3.2 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.3.2
30+
git checkout v0.3.3
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.3.2
58+
git checkout v0.3.3
5959
```
6060

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

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

extensions/mnft/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ext-mnft"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55

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

extensions/xudt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ext-xudt"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55

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

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.3.2"
3+
version = "0.3.3"
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)