Skip to content

Commit 546664f

Browse files
committed
Prepare 0.6.0 release
1 parent 37df6fb commit 546664f

File tree

6 files changed

+32
-6
lines changed

6 files changed

+32
-6
lines changed

NEWS

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
v0.6.0 (2017-11-26)
2+
* Add support for OpenSSL 1.1 (still works with OpenSSL 1.0).
3+
* Switch to C++11 (gcc 4.9 or higher now required to build).
4+
* Allow GPG to fail on some keys (makes unlock work better if there are
5+
multiple keys that can unlock the repo but only some are available).
6+
* Allow the repo state directory to be configured with the
7+
git-crypt.repoStateDir git config option.
8+
* Respect the gpg.program git config option.
9+
* Don't hard code path to git-crypt in .git/config on Linux (ensures
10+
repo continues to work if git-crypt is moved).
11+
* Ensure git-crypt's gpg files won't be treated as text by Git.
12+
* Minor improvements to build system, documentation.
13+
114
v0.5.0 (2015-05-30)
215
* Drastically speed up lock/unlock when used with Git 1.8.5 or newer.
316
* Add git-crypt(1) man page (pass ENABLE_MAN=yes to make to build).

NEWS.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
News
22
====
33

4+
######v0.6.0 (2017-11-26)
5+
* Add support for OpenSSL 1.1 (still works with OpenSSL 1.0).
6+
* Switch to C++11 (gcc 4.9 or higher now required to build).
7+
* Allow GPG to fail on some keys (makes unlock work better if there are
8+
multiple keys that can unlock the repo but only some are available).
9+
* Allow the repo state directory to be configured with the
10+
git-crypt.repoStateDir git config option.
11+
* Respect the gpg.program git config option.
12+
* Don't hard code path to git-crypt in .git/config on Linux (ensures
13+
repo continues to work if git-crypt is moved).
14+
* Ensure git-crypt's gpg files won't be treated as text by Git.
15+
* Minor improvements to build system, documentation.
16+
417
######v0.5.0 (2015-05-30)
518
* Drastically speed up lock/unlock when used with Git 1.8.5 or newer.
619
* Add git-crypt(1) man page (pass `ENABLE_MAN=yes` to make to build).

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ encryption and decryption happen transparently.
6969

7070
CURRENT STATUS
7171

72-
The latest version of git-crypt is 0.5.0, released on 2015-05-30.
72+
The latest version of git-crypt is 0.6.0, released on 2017-11-26.
7373
git-crypt aims to be bug-free and reliable, meaning it shouldn't
7474
crash, malfunction, or expose your confidential data. However,
7575
it has not yet reached maturity, meaning it is not as documented,

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ encryption and decryption happen transparently.
7070
Current Status
7171
--------------
7272

73-
The latest version of git-crypt is [0.5.0](NEWS.md), released on
74-
2015-05-30. git-crypt aims to be bug-free and reliable, meaning it
73+
The latest version of git-crypt is [0.6.0](NEWS.md), released on
74+
2017-11-26. git-crypt aims to be bug-free and reliable, meaning it
7575
shouldn't crash, malfunction, or expose your confidential data.
7676
However, it has not yet reached maturity, meaning it is not as
7777
documented, featureful, or easy-to-use as it should be. Additionally,

git-crypt.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#ifndef GIT_CRYPT_GIT_CRYPT_HPP
3232
#define GIT_CRYPT_GIT_CRYPT_HPP
3333

34-
#define VERSION "0.5.0"
34+
#define VERSION "0.6.0"
3535

3636
extern const char* argv0; // initialized in main() to argv[0]
3737

man/git-crypt.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
-->
88
<refentryinfo>
99
<title>git-crypt</title>
10-
<date>2015-05-30</date>
11-
<productname>git-crypt 0.5.0</productname>
10+
<date>2017-11-26</date>
11+
<productname>git-crypt 0.6.0</productname>
1212

1313
<author>
1414
<othername>Andrew Ayer</othername>

0 commit comments

Comments
 (0)