diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 3e6ecd5f..5daa327c 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -17,7 +17,7 @@ A clear and concise description of what you expected to happen.
- Device: [e.g. iPhone6]
- OS: [e.g. Linux]
- Java [output of `java -version`]
- - Version [e.g. 2.1.2]
+ - Version [e.g. 2.2.0]
**Additional context**
Add any other context about the problem here.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e5390318..c5b3bc77 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,16 @@
## V 2.x.x (NEXT)
-## (next: V 2.1.3)
+## V 2.2.0 Key generation
-* Enh: Add key generation (courtesy Paul Schaub)
+* new: Add key generation (initial version by Paul Schaub [@vanitasvitae])
+* Fix: Encryption without having any private key.
+* Enh: Integration tests with GnuPG
+* Enh: Tiger no longer recommended
* Enh: Add algorithm suite for OpenPGP for XMPP (courtesy Paul Schaub)
* Enh: Add 'BouncyGPG.registerProvider()'
+* Enh: Merge [Better error messages by user9209](https://github.com/neuhalje/bouncy-gpg/pull/36)
+* Enh: Smaller fixes
+* Enh: Bump BouncyCastle to 1.64
### API Changes (breaking)
@@ -15,6 +21,7 @@
* new: `BouncyGPG.registerProvider()`
* new: key generation via `BouncyGPG.createKeyPair()`
* new: algorithm suite for OpenPGP for XMPP (XEP-0373)
+* dep: StreamBasedKeyringConfig, ResourceBasedKeyringConfig, and StreamBasedKeyringConfig deprecated in favor of InMemoryKeyring
## V 2.1.2 OSGI bundle and minor improvements
diff --git a/README.md b/README.md
index 6cc00246..5401a718 100644
--- a/README.md
+++ b/README.md
@@ -202,8 +202,8 @@ repositories {
// ...
dependencies {
- compile 'org.bouncycastle:bcprov-jdk15on:1.60'
- compile 'org.bouncycastle:bcpg-jdk15on:1.60'
+ compile 'org.bouncycastle:bcprov-jdk15on:1.64'
+ compile 'org.bouncycastle:bcpg-jdk15on:1.64'
// ...
compile 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.+'
// ...
@@ -229,7 +229,7 @@ and this dependency snippet: