Commit 080720ce58b019c0b35dcd15ab0aeb6bc77db8e8

Authored by Hayk Martirosyan
1 parent 11aaa703

Bump minor version

Showing 2 changed files with 5 additions and 2 deletions
CMakeLists.txt
@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8.4) @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8.4)
2 project(redox) 2 project(redox)
3 3
4 set(REDOX_VERSION_MAJOR 0) 4 set(REDOX_VERSION_MAJOR 0)
5 -set(REDOX_VERSION_MINOR 2)  
6 -set(REDOX_VERSION_PATCH 3) 5 +set(REDOX_VERSION_MINOR 3)
  6 +set(REDOX_VERSION_PATCH 0)
7 set(REDOX_VERSION_STRING ${REDOX_VERSION_MAJOR}.${REDOX_VERSION_MINOR}.${REDOX_VERSION_PATCH}) 7 set(REDOX_VERSION_STRING ${REDOX_VERSION_MAJOR}.${REDOX_VERSION_MINOR}.${REDOX_VERSION_PATCH})
8 8
9 option(lib "Build Redox as a dynamic library." ON) 9 option(lib "Build Redox as a dynamic library." ON)
HISTORY.md
1 # Release History 1 # Release History
2 2
  3 +## 0.3 (2015-09-28)
  4 +A bunch of multithreading fixes, thanks to @bdallas.
  5 +
3 ## 0.2 (2015-01-31) 6 ## 0.2 (2015-01-31)
4 * Move to vector of strings as input, to handle arbitrary data better and 7 * Move to vector of strings as input, to handle arbitrary data better and
5 improve speed. 8 improve speed.