Skip to content

Commit

Permalink
Merge pull request #12 from eosnetworkfoundation/bump-version
Browse files Browse the repository at this point in the history
Bump version to v3.0.0-rc1
  • Loading branch information
tbfleming committed Jan 31, 2022
2 parents bfc909a + 8ed48e3 commit 0d452a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@

build/*
.DS_Store
.vscode
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 3.5)

project(eosio_contracts)

set(VERSION_MAJOR 1)
set(VERSION_MINOR 9)
set(VERSION_PATCH 2)
#set(VERSION_SUFFIX rc4)
set(VERSION_MAJOR 3)
set(VERSION_MINOR 0)
set(VERSION_PATCH 0)
set(VERSION_SUFFIX rc1)

if (VERSION_SUFFIX)
set(VERSION_FULL "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${VERSION_SUFFIX}")
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## Repo organization

Current development is on the `main` branch. There aren't any releases yet; they'll eventually be on release branches.
| branch | description |
| ------ | ----------- |
| `main` | Development for future releases |
| `release/3.0.x` | 3.0.x-* series of releases |

## Supported Operating Systems

Expand Down Expand Up @@ -49,6 +52,7 @@ mkdir -p ~/work
cd ~/work
git clone https://github.com/eosnetworkfoundation/mandel.git
cd mandel
git checkout v3.0.0-rc1
git submodule update --init --recursive
mkdir build
cd build
Expand Down

0 comments on commit 0d452a3

Please sign in to comment.