Skip to content

Commit bc7e55b

Browse files
committed
Prepare 0.5.0 release
1 parent f569117 commit bc7e55b

6 files changed

Lines changed: 28 additions & 6 deletions

File tree

NEWS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
v0.5.0 (2015-05-30)
2+
* Drastically speed up lock/unlock when used with Git 1.8.5 or newer.
3+
* Add git-crypt(1) man page (pass ENABLE_MAN=yes to make to build).
4+
* Add --trusted option to 'git-crypt gpg-add-user' to add user even if
5+
GPG doesn't trust user's key.
6+
* Improve 'git-crypt lock' usability, add --force option.
7+
* Ignore symlinks and other non-files when running 'git-crypt status'.
8+
* Fix compilation on old versions of Mac OS X.
9+
* Fix GPG mode when with-fingerprint enabled in gpg.conf.
10+
* Minor bug fixes and improvements to help/error messages.
11+
112
v0.4.2 (2015-01-31)
213
* Fix unlock and lock under Git 2.2.2 and higher.
314
* Drop support for versions of Git older than 1.7.2.

NEWS.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
News
22
====
33

4+
######v0.5.0 (2015-05-30)
5+
* Drastically speed up lock/unlock when used with Git 1.8.5 or newer.
6+
* Add git-crypt(1) man page (pass `ENABLE_MAN=yes` to make to build).
7+
* Add --trusted option to `git-crypt gpg-add-user` to add user even if
8+
GPG doesn't trust user's key.
9+
* Improve `git-crypt lock` usability, add --force option.
10+
* Ignore symlinks and other non-files when running `git-crypt status`.
11+
* Fix compilation on old versions of Mac OS X.
12+
* Fix GPG mode when with-fingerprint enabled in gpg.conf.
13+
* Minor bug fixes and improvements to help/error messages.
14+
415
######v0.4.2 (2015-01-31)
516
* Fix unlock and lock under Git 2.2.2 and higher.
617
* Drop support for versions of Git older than 1.7.2.

README

Lines changed: 1 addition & 1 deletion
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.4.2, released on 2015-01-31.
72+
The latest version of git-crypt is 0.5.0, released on 2015-05-30.
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

Lines changed: 2 additions & 2 deletions
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.4.2](NEWS.md), released on
74-
2015-01-31. git-crypt aims to be bug-free and reliable, meaning it
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
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

Lines changed: 1 addition & 1 deletion
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.4.2"
34+
#define VERSION "0.5.0"
3535

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

man/git-crypt.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
-->
88
<refentryinfo>
99
<title>git-crypt</title>
10-
<date>2015-05-17</date>
11-
<productname>git-crypt 0.4.3</productname>
10+
<date>2015-05-30</date>
11+
<productname>git-crypt 0.5.0</productname>
1212

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

0 commit comments

Comments
 (0)