From 7083ff97a5237dbd731f272db737cf27ca57a855 Mon Sep 17 00:00:00 2001 From: Susam Pal Date: Tue, 22 Dec 2015 23:32:57 +0530 Subject: [PATCH] Set version to 0.2.0 --- CHANGES.md | 5 +++++ Doxyfile | 2 +- README.md | 2 +- uncap.c | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c066d1c..9282c36 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ Changelog ========= +0.2.0 (2015-12-22) +------------------ +- NEW: Write verbose logs to file with `-f` or `--file` option. +- MOD: Switch from BSD 2-Clause License to MIT License + 0.1.0 (2015-09-13) ------------------ - NEW: Map Caps Lock key to Escape key by default. diff --git a/Doxyfile b/Doxyfile index 730589f..6e534b8 100644 --- a/Doxyfile +++ b/Doxyfile @@ -1,3 +1,3 @@ PROJECT_NAME = Uncap -PROJECT_NUMBER = 0.1.0 +PROJECT_NUMBER = 0.2.0 JAVADOC_AUTOBRIEF = YES diff --git a/README.md b/README.md index 27ae536..b525856 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Map Caps Lock key to Escape key, or any to any key, on Windows systems. [![Download][SHIELD]][DOWNLOAD] [SHIELD]: https://img.shields.io/badge/download-uncap.exe-brightgreen.svg -[DOWNLOAD]: https://github.com/susam/uncap/releases/download/0.1.0/uncap.exe +[DOWNLOAD]: https://github.com/susam/uncap/releases/download/0.2.0/uncap.exe Contents diff --git a/uncap.c b/uncap.c index b99ba7b..41bdcab 100644 --- a/uncap.c +++ b/uncap.c @@ -36,7 +36,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. /** Version of the program. */ -#define VERSION "0.2.0-DEV" +#define VERSION "0.2.0" /** Author of the program. */ #define AUTHOR "Susam Pal"