Skip to content

Commit 3581717

Browse files
committed
bump version to 1.4.3
1 parent 70fc348 commit 3581717

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ set( CXX_STANDARD_REQUIRED ON)
3535

3636
set(VERSION_MAJOR 1)
3737
set(VERSION_MINOR 4)
38-
set(VERSION_PATCH 2)
38+
set(VERSION_PATCH 3)
3939

4040
set( CLI_CLIENT_EXECUTABLE_NAME cleos )
4141
set( NODE_EXECUTABLE_NAME nodeos )

Docker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ cd eos/Docker
2020
docker build . -t eosio/eos
2121
```
2222

23-
The above will build off the most recent commit to the master branch by default. If you would like to target a specific branch/tag, you may use a build argument. For example, if you wished to generate a docker image based off of the v1.4.2 tag, you could do the following:
23+
The above will build off the most recent commit to the master branch by default. If you would like to target a specific branch/tag, you may use a build argument. For example, if you wished to generate a docker image based off of the v1.4.3 tag, you could do the following:
2424

2525
```bash
26-
docker build -t eosio/eos:v1.4.2 --build-arg branch=v1.4.2 .
26+
docker build -t eosio/eos:v1.4.3 --build-arg branch=v1.4.3 .
2727
```
2828

2929
By default, the symbol in eosio.system is set to SYS. You can override this using the symbol argument while building the docker image.

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# EOSIO - The Most Powerful Infrastructure for Decentralized Applications
23

34
[![Build status](https://badge.buildkite.com/370fe5c79410f7d695e4e34c500b4e86e3ac021c6b1f739e20.svg?branch=master)](https://buildkite.com/EOSIO/eosio)
@@ -38,22 +39,22 @@ $ brew remove eosio
3839
```
3940
#### Ubuntu 18.04 Debian Package Install
4041
```sh
41-
$ wget https://github.com/eosio/eos/releases/download/v1.4.2/eosio-1.4.2.ubuntu-18.04-x86_64.deb
42-
$ sudo apt install ./eosio-1.4.2.ubuntu-18.04-x86_64.deb
42+
$ wget https://github.com/eosio/eos/releases/download/v1.4.3/eosio-1.4.3.ubuntu-18.04-x86_64.deb
43+
$ sudo apt install ./eosio-1.4.3.ubuntu-18.04-x86_64.deb
4344
```
4445
#### Ubuntu 16.04 Debian Package Install
4546
```sh
46-
$ wget https://github.com/eosio/eos/releases/download/v1.4.2/eosio-1.4.2.ubuntu-16.04-x86_64.deb
47-
$ sudo apt install ./eosio-1.4.2.ubuntu-16.04-x86_64.deb
47+
$ wget https://github.com/eosio/eos/releases/download/v1.4.3/eosio-1.4.3.ubuntu-16.04-x86_64.deb
48+
$ sudo apt install ./eosio-1.4.3.ubuntu-16.04-x86_64.deb
4849
```
4950
#### Debian Package Uninstall
5051
```sh
5152
$ sudo apt remove eosio
5253
```
5354
#### RPM Package Install
5455
```sh
55-
$ wget https://github.com/eosio/eos/releases/download/v1.4.2/eosio-1.4.2.x86_64-0.x86_64.rpm
56-
$ sudo yum install ./eosio-1.4.2.x86_64-0.x86_64.rpm
56+
$ wget https://github.com/eosio/eos/releases/download/v1.4.3/eosio-1.4.3.x86_64-0.x86_64.rpm
57+
$ sudo yum install ./eosio-1.4.3.x86_64-0.x86_64.rpm
5758
```
5859
#### RPM Package Uninstall
5960
```sh

0 commit comments

Comments
 (0)