Commit ce6505093ad9edd051c05781be1b7381634621d0
1 parent
67c5defc
Bump version to 0.2.0
Showing
2 changed files
with
7 additions
and
1 deletions
CMakeLists.txt
| ... | ... | @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.4) |
| 2 | 2 | project(redox) |
| 3 | 3 | |
| 4 | 4 | set(REDOX_VERSION_MAJOR 0) |
| 5 | -set(REDOX_VERSION_MINOR 1) | |
| 5 | +set(REDOX_VERSION_MINOR 2) | |
| 6 | 6 | set(REDOX_VERSION_PATCH 0) |
| 7 | 7 | set(REDOX_VERSION_STRING ${REDOX_VERSION_MAJOR}.${REDOX_VERSION_MINOR}.${REDOX_VERSION_PATCH}) |
| 8 | 8 | ... | ... |
HISTORY.md
| 1 | 1 | # Release History |
| 2 | 2 | |
| 3 | +## 0.2.0 (2015-01-31) | |
| 4 | +* Move to vector of strings as input, to handle arbitrary data better and | |
| 5 | +improve speed. | |
| 6 | +* Add doxygen docs. | |
| 7 | +* Move all init code out of constructors into .connect methods. | |
| 8 | + | |
| 3 | 9 | ## 0.1.0 (2015-01-27) |
| 4 | 10 | First versioned release after many nights of segfaults and memory leaks. |
| 5 | 11 | ... | ... |