Skip to content

Commit

Permalink
Bump version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TheQuantumPhysicist committed May 29, 2024
1 parent 89baf23 commit f246c4f
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 91 deletions.
156 changes: 78 additions & 78 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ homepage = "https://mintlayer.org"
repository = "https://github.com/mintlayer/mintlayer-core"
readme = "README.md"
license = "MIT"
version = "0.4.3"
version = "0.5.0"
authors = ["Samer Afach <samer.afach@mintlayer.org>", "Ben Marsh <benjamin.marsh@mintlayer.org>", "Enrico Rubboli <enrico.rubboli@mintlayer.org>"]
edition = "2021"

Expand Down Expand Up @@ -123,7 +123,7 @@ utxo = { path = "utxo" }
[workspace.package]
edition = "2021"
rust-version = "1.75"
version = "0.4.3"
version = "0.5.0"
license = "MIT"

[workspace.dependencies]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@ Here are the commands as recommended for different scenarios:

#### Assuming you're using the source code

Every release has a tag and a release branch. Make sure you checkout the release you need. For example, if you need v0.4.3, you should first run the following to check out the release branch:
Every release has a tag and a release branch. Make sure you checkout the release you need. For example, if you need v0.5.0, you should first run the following to check out the release branch:

```sh
git checkout release-v0.4.3
git checkout release-v0.5.0
```

or to checkout the tag:

```sh
git checkout tags/v0.4.3
git checkout tags/v0.5.0
```

Release branches are more recommended than tags, because they get necessary security patches, if any. Tags are just markers.
Expand Down
6 changes: 3 additions & 3 deletions build-tools/docker/BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The result should similar to the following:

```
$ docker images |grep mintlayer
mintlayer/wallet-cli 0.4.3 57dcc4898a30 2 minutes ago 125MB
mintlayer/node-gui 0.4.3 a2ed3937e081 2 minutes ago 290MB
mintlayer/node-daemon 0.4.3 ad830bf576e3 3 minutes ago 119MB
mintlayer/wallet-cli 0.5.0 57dcc4898a30 2 minutes ago 125MB
mintlayer/node-gui 0.5.0 a2ed3937e081 2 minutes ago 290MB
mintlayer/node-daemon 0.5.0 ad830bf576e3 3 minutes ago 119MB
```
2 changes: 1 addition & 1 deletion build-tools/docker/example-mainnet-dns-server/.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DOCKERHUB_USERNAME=mintlayer
# The version of mintlayer binaries to use.
# This will be used together with DOCKERHUB_USERNAME to form full names of docker images
# (i.e. $DOCKERHUB_USERNAME/image_name:$ML_SOFTWARE_VERSION)
ML_SOFTWARE_VERSION=0.4.3
ML_SOFTWARE_VERSION=0.5.0

# The user and group ids that will be used to run the software.
ML_USER_ID=10001
Expand Down
2 changes: 1 addition & 1 deletion build-tools/docker/example-mainnet/.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ DOCKERHUB_USERNAME=mintlayer
# The version of mintlayer binaries to use.
# This will be used together with DOCKERHUB_USERNAME to form full names of docker images
# (i.e. $DOCKERHUB_USERNAME/image_name:$ML_SOFTWARE_VERSION)
ML_SOFTWARE_VERSION=0.4.3
ML_SOFTWARE_VERSION=0.5.0

# The user and group ids that will be used to run the software.
ML_USER_ID=10001
Expand Down
2 changes: 1 addition & 1 deletion node-daemon/docs/RPC.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RPC documentation for Mintlayer node

Version `0.4.3`.
Version `0.5.0`.

## Module `node`

Expand Down
2 changes: 1 addition & 1 deletion node-daemon/docs/RPC_DEV.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RPC documentation for Mintlayer node developer functions

Version `0.4.3`.
Version `0.5.0`.

These functions are used for testing and only enabled in regtest.

Expand Down
2 changes: 1 addition & 1 deletion wallet/wallet-rpc-daemon/docs/RPC.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RPC documentation for Mintlayer node wallet

Version `0.4.3`.
Version `0.5.0`.

## Module `WalletRpc`

Expand Down

0 comments on commit f246c4f

Please sign in to comment.