aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-05-30 21:04:33 +0200
committerJakob Unterwurzacher2016-05-30 21:04:33 +0200
commit4c5365d1614bce6a67404f1abaa6a4efa23c39b6 (patch)
treefac89cb84a5f53e00d0600452765ccd15e327938
parenta4e1d94ee5e6c73a4527987ff8b105f2cb5fc543 (diff)
README: list today as v0.10 release datev0.10
Also improve the order of the bullet points.
-rw-r--r--README.md21
1 files changed, 9 insertions, 12 deletions
diff --git a/README.md b/README.md
index 2a44af6..61ebd36 100644
--- a/README.md
+++ b/README.md
@@ -101,22 +101,22 @@ RM: 4.42
Changelog
---------
-v0.10 (not yet released)
-* **Drop dependency to `spacemonkeygo/openssl`**
+v0.10, 2016-05-30
+* **Replace `spacemonkeygo/openssl` with `stupidgcm`**
* gocryptfs now has its own thin wrapper to OpenSSL's GCM implementation
called `stupidgcm`.
* This should fix the [compile issues](https://github.com/rfjakob/gocryptfs/issues/21)
- people are seeing with `spacemonkeygo/openssl` and it also gets us
+ people are seeing with `spacemonkeygo/openssl`. It also gets us
a 20% performance boost for streaming writes.
-* Warn but continue anyway if fallocate(2) is not supported by the
- underlying filesystem, see [issue #22](https://github.com/rfjakob/gocryptfs/issues/22)
- * Enables to use gocryptfs on ZFS, albeit with reduced out-of-space safety.
* **Automatically choose between OpenSSL and Go crypto** [issue #23](https://github.com/rfjakob/gocryptfs/issues/23)
- * `-openssl=auto` is the new default
* Go 1.6 added an optimized GCM implementation in amd64 assembly that uses AES-NI.
- This is faster than OpenSSL and is used if available.
- * In all other cases OpenSSL is much faster and is used instead.
+ This is faster than OpenSSL and is used if available. In all other
+ cases OpenSSL is much faster and is used instead.
+ * `-openssl=auto` is the new default
* Passing `-openssl=true/false` overrides the autodetection.
+* Warn but continue anyway if fallocate(2) is not supported by the
+ underlying filesystem, see [issue #22](https://github.com/rfjakob/gocryptfs/issues/22)
+ * Enables to use gocryptfs on ZFS and ext3, albeit with reduced out-of-space safety.
* [Fix statfs](https://github.com/rfjakob/gocryptfs/pull/27), by @lxp
* Fix a fsstress [failure](https://github.com/hanwen/go-fuse/issues/106)
in the go-fuse library.
@@ -215,6 +215,3 @@ v0.2, 2015-10-11
v0.1, 2015-10-07
* First release
* On-disk format 0
-
-See https://github.com/rfjakob/gocryptfs/tags for the release dates and associated
-git tags.