diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a97889..8a324f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ ## Unreleased + +## 0.7.0 - Support device confirmation button & fix text grammers (#16) - Use icon for button information instead text - Support left analog & up/down hold for select item +- Support multiple save dump slots +- Support configure ## 0.6.0 - Fix broken import process of 0.5.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 56ec4f4..34b70e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ set(CMAKE_C_COMPILER "arm-vita-eabi-gcc") project(savemgr) set(TITLE_ID "SAVEMGR00") set(TITLE "Save Manager") -set(VERSION "0.6.0") +set(VERSION "0.7.0") execute_process(COMMAND python -c "print '%02d.%02d' % tuple(map(lambda x: int(x), '${VERSION}'.split('.')[:2]))"