From 1ca8f89602cd8530d8eac90311066a0ac7ca9720 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Sat, 31 Jan 2015 19:17:43 -0800 Subject: [PATCH] Prepare for 0.4.2 release --- NEWS | 5 +++++ NEWS.md | 5 +++++ README | 2 +- README.md | 4 ++-- git-crypt.hpp | 2 +- 5 files changed, 14 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index c399679..f51ea1f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +v0.4.2 (2015-01-31) + * Fix unlock and lock under Git 2.2.2 and higher. + * Drop support for versions of Git older than 1.7.2. + * Minor improvements to some help/error messages. + v0.4.1 (2015-01-08) * Important usability fix to ensure that the .git-crypt directory can't be encrypted by accident (see RELEASE_NOTES-0.4.1.md for diff --git a/NEWS.md b/NEWS.md index ab1de35..5da8f6b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,11 @@ News ==== +######v0.4.2 (2015-01-31) +* Fix unlock and lock under Git 2.2.2 and higher. +* Drop support for versions of Git older than 1.7.2. +* Minor improvements to some help/error messages. + ######v0.4.1 (2015-01-08) * Important usability fix to ensure that the .git-crypt directory can't be encrypted by accident (see diff --git a/README b/README index 0f10d7c..2d90b29 100644 --- a/README +++ b/README @@ -66,7 +66,7 @@ encryption and decryption happen transparently. CURRENT STATUS -The latest version of git-crypt is 0.4.1, released on 2015-01-08. +The latest version of git-crypt is 0.4.2, released on 2015-01-31. git-crypt aims to be bug-free and reliable, meaning it shouldn't crash, malfunction, or expose your confidential data. However, it has not yet reached maturity, meaning it is not as documented, diff --git a/README.md b/README.md index ac59e9d..c5759c4 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,8 @@ encryption and decryption happen transparently. Current Status -------------- -The latest version of git-crypt is [0.4.1](RELEASE_NOTES-0.4.1.md), released on -2015-01-08. git-crypt aims to be bug-free and reliable, meaning it +The latest version of git-crypt is [0.4.2](NEWS.md), released on +2015-01-31. git-crypt aims to be bug-free and reliable, meaning it shouldn't crash, malfunction, or expose your confidential data. However, it has not yet reached maturity, meaning it is not as documented, featureful, or easy-to-use as it should be. Additionally, diff --git a/git-crypt.hpp b/git-crypt.hpp index c298559..78b8196 100644 --- a/git-crypt.hpp +++ b/git-crypt.hpp @@ -31,7 +31,7 @@ #ifndef GIT_CRYPT_GIT_CRYPT_HPP #define GIT_CRYPT_GIT_CRYPT_HPP -#define VERSION "0.4.1" +#define VERSION "0.4.2" extern const char* argv0; // initialized in main() to argv[0]