Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/1.5.x #2

Merged
merged 21 commits into from
Jan 8, 2019
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
fdfa6f4
bump version to rc2
b1bart Nov 29, 2018
78291ad
update rpm names to match the real files
b1bart Nov 29, 2018
d1caabb
Merge pull request #6412 from EOSIO/feature/bump-version-to-1.5.0-rc2
b1bart Nov 30, 2018
c72e956
Fix deb package names in README
Nov 29, 2018
7b2b5f7
Fix package naming scheme for debs
Nov 29, 2018
549c96c
Merge pull request #6417 from EOSIO/fix-deb-package-names
b1bart Nov 30, 2018
d406d1a
promote rc2 to release
b1bart Dec 4, 2018
d3f3fe3
add missing release to deb packages
b1bart Dec 4, 2018
49bb38e
Merge pull request #6432 from EOSIO/feature/promote-1.5.0-rc2-to-1.5.0
b1bart Dec 4, 2018
85cf4d0
bump version to 1.5.1
b1bart Dec 13, 2018
5f2a0c5
Consolidated Security Fixes for 1.5.1
b1bart Dec 13, 2018
8f1de5c
Merge pull request #6479 from EOSIO/feature/1.5.1-security-omnibus
b1bart Dec 13, 2018
147cdb9
Merge pull request #6481 from EOSIO/feature/bump-version-to-1.5.1
b1bart Dec 13, 2018
04655aa
state history plugin: permission_object bug #6495
tbfleming Dec 17, 2018
0b70dd6
Merge pull request #6496 from EOSIO/state-history-auth-bug
tbfleming Dec 17, 2018
3831e54
bump version to 1.5.2
b1bart Dec 18, 2018
a51aeac
Merge pull request #6503 from EOSIO/feature/bump-version-to-1.5.2
b1bart Dec 18, 2018
13dce54
Consolidated Security Fixes for 1.5.3
b1bart Jan 2, 2019
edae18f
bump version to 1.5.3
b1bart Jan 2, 2019
5b58029
Merge pull request #6546 from EOSIO/feature/1.5.3-security-omnibus
b1bart Jan 2, 2019
c81ef13
Merge pull request #6545 from EOSIO/feature/bump-version-to-1.5.3
b1bart Jan 2, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bump version to 1.5.3
b1bart committed Jan 2, 2019
commit edae18f486350f90f2f38ba76c1130ff586e11d1
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ set( CXX_STANDARD_REQUIRED ON)

set(VERSION_MAJOR 1)
set(VERSION_MINOR 5)
set(VERSION_PATCH 2)
set(VERSION_PATCH 3)

if(VERSION_SUFFIX)
set(VERSION_FULL "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${VERSION_SUFFIX}")
4 changes: 2 additions & 2 deletions Docker/README.md
Original file line number Diff line number Diff line change
@@ -20,10 +20,10 @@ cd eos/Docker
docker build . -t eosio/eos
```

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.5.2 tag, you could do the following:
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.5.3 tag, you could do the following:

```bash
docker build -t eosio/eos:v1.5.2 --build-arg branch=v1.5.2 .
docker build -t eosio/eos:v1.5.3 --build-arg branch=v1.5.3 .
```

By default, the symbol in eosio.system is set to SYS. You can override this using the symbol argument while building the docker image.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -39,31 +39,31 @@ $ brew remove eosio
```
#### Ubuntu 18.04 Debian Package Install
```sh
$ wget https://github.com/eosio/eos/releases/download/v1.5.2/eosio_1.5.2-1-ubuntu-18.04_amd64.deb
$ sudo apt install ./eosio_1.5.2-1-ubuntu-18.04_amd64.deb
$ wget https://github.com/eosio/eos/releases/download/v1.5.3/eosio_1.5.3-1-ubuntu-18.04_amd64.deb
$ sudo apt install ./eosio_1.5.3-1-ubuntu-18.04_amd64.deb
```
#### Ubuntu 16.04 Debian Package Install
```sh
$ wget https://github.com/eosio/eos/releases/download/v1.5.2/eosio_1.5.2-1-ubuntu-16.04_amd64.deb
$ sudo apt install ./eosio_1.5.2-1-ubuntu-16.04_amd64.deb
$ wget https://github.com/eosio/eos/releases/download/v1.5.3/eosio_1.5.3-1-ubuntu-16.04_amd64.deb
$ sudo apt install ./eosio_1.5.3-1-ubuntu-16.04_amd64.deb
```
#### Debian Package Uninstall
```sh
$ sudo apt remove eosio
```
#### Centos RPM Package Install
```sh
$ wget https://github.com/eosio/eos/releases/download/v1.5.2/eosio-1.5.2-1.el7.x86_64.rpm
$ sudo yum install ./eosio-1.5.2-1.el7.x86_64.rpm
$ wget https://github.com/eosio/eos/releases/download/v1.5.3/eosio-1.5.3-1.el7.x86_64.rpm
$ sudo yum install ./eosio-1.5.3-1.el7.x86_64.rpm
```
#### Centos RPM Package Uninstall
```sh
$ sudo yum remove eosio.cdt
```
#### Fedora RPM Package Install
```sh
$ wget https://github.com/eosio/eos/releases/download/v1.5.2/eosio-1.5.2-1.fc27.x86_64.rpm
$ sudo yum install ./eosio-1.5.2-1.fc27.x86_64.rpm
$ wget https://github.com/eosio/eos/releases/download/v1.5.3/eosio-1.5.3-1.fc27.x86_64.rpm
$ sudo yum install ./eosio-1.5.3-1.fc27.x86_64.rpm
```
#### Fedora RPM Package Uninstall
```sh