Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1100 from EOSIO/release-1.8.0-version-bump
Browse files Browse the repository at this point in the history
Bump version to v1.8.0
  • Loading branch information
nksanthosh authored May 19, 2021
2 parents 172b61e + d9fc8cb commit b9a8255
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ endif()
set(VERSION_MAJOR 1)
set(VERSION_MINOR 8)
set(VERSION_PATCH 0)
set(VERSION_SUFFIX rc2)
#set(VERSION_SUFFIX rc2)

if (VERSION_SUFFIX)
set(VERSION_FULL "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${VERSION_SUFFIX}")
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017-2019 block.one and its contributors. All rights reserved.
Copyright (c) 2017-2021 block.one and its contributors. All rights reserved.

The MIT License

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# EOSIO.CDT (Contract Development Toolkit)
## Version : 1.8.0-rc2
## Version : 1.8.0

EOSIO.CDT is a toolchain for WebAssembly (WASM) and a set of tools to facilitate smart contract development for the EOSIO platform. In addition to being a general purpose WebAssembly toolchain, [EOSIO](https://github.com/eosio/eos) specific optimizations are available to support building EOSIO smart contracts. This new toolchain is built around [Clang 9](https://github.com/eosio/llvm), which means that EOSIO.CDT has the most currently available optimizations and analyses from LLVM, but as the WASM target is still considered experimental, some optimizations are incomplete or not available.

Expand Down Expand Up @@ -28,8 +28,8 @@ brew remove eosio.cdt

### Debian Package Install
```sh
wget https://github.com/eosio/eosio.cdt/releases/download/v1.7.0/eosio.cdt_1.7.0-1-ubuntu-18.04_amd64.deb
sudo apt install ./eosio.cdt_1.7.0-1-ubuntu-18.04_amd64.deb
wget https://github.com/eosio/eosio.cdt/releases/download/v1.8.0/eosio.cdt_1.8.0-1-ubuntu-18.04_amd64.deb
sudo apt install ./eosio.cdt_1.8.0-1-ubuntu-18.04_amd64.deb
```

### Debian Package Uninstall
Expand All @@ -39,8 +39,8 @@ sudo apt remove eosio.cdt

### RPM Package Install
```sh
wget https://github.com/eosio/eosio.cdt/releases/download/v1.7.0/eosio.cdt-1.7.0-1.el7.x86_64.rpm
sudo yum install ./eosio.cdt-1.7.0-1.el7.x86_64.rpm
wget https://github.com/eosio/eosio.cdt/releases/download/v1.8.0/eosio.cdt-1.8.0-1.el7.x86_64.rpm
sudo yum install ./eosio.cdt-1.8.0-1.el7.x86_64.rpm
```

### RPM Package Uninstall
Expand Down
8 changes: 4 additions & 4 deletions docs/02_installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ brew remove eosio.cdt
## Debian Package Install

```sh
wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.8.0-rc1/eosio.cdt_1.8.0-rc1-ubuntu-18.04_amd64.deb
sudo apt install ./eosio.cdt_1.8.0-rc1-ubuntu-18.04_amd64.deb
wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.8.0/eosio.cdt_1.8.0-1-ubuntu-18.04_amd64.deb
sudo apt install ./eosio.cdt_1.8.0-1-ubuntu-18.04_amd64.deb
```

## Debian Package Uninstall
Expand All @@ -35,8 +35,8 @@ sudo apt remove eosio.cdt
## RPM Package Install

```sh
wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.8.0-rc1/eosio.cdt-1.8.0-rc1.el7.x86_64.rpm
sudo yum install ./eosio.cdt-1.8.0-rc1.el7.x86_64.rpm
wget https://github.com/EOSIO/eosio.cdt/releases/download/v1.8.0/eosio.cdt-1.8.0-1.el7.x86_64.rpm
sudo yum install ./eosio.cdt-1.8.0-1.el7.x86_64.rpm
```

## RPM Package Uninstall
Expand Down

0 comments on commit b9a8255

Please sign in to comment.