File tree 3 files changed +23
-3
lines changed
3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ### 0.15.2 [ 2021-07-20]
4
+
5
+ #### General
6
+
7
+ * Be less strict in userid validation: allow to use userids with self-signature, which has key expiration in the past.
8
+ * Do not mark signature as invalid if key which produced it is expired now, but was valid during signing.
9
+ * Fix incorrect key expiration calculation in some cases.
10
+ * Fix incorrect version number in the ` version.txt ` .
11
+
12
+ #### FFI
13
+
14
+ * Add function ` rnp_key_get_default_key() ` to pick the default key/subkey for the specific operation.
15
+ * Allow to pass NULL hash parameter to ` rnp_key_add_uid() ` to pick the default one.
16
+ * Use the same approach as in ` rnp_op_encrypt_add_recipient() ` for encryption subkey selection in ` rnp_key_export_autocrypt() ` .
17
+
18
+ #### CLI
19
+
20
+ * ` rnp ` : Show error message if encryption failed.
21
+ * ` rnpkeys ` : Add ` --expiration ` option to specify expiration time during key generation.
22
+
3
23
### 0.15.1 [ 2021-05-28]
4
24
5
25
#### General
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Prerequisite: please ensure `git` is installed on the system.
34
34
[source,console]
35
35
----
36
36
# Clone the repository by version tag (or omit it to get the latest sources)
37
- git clone https://github.com/rnpgp/rnp.git -b v0.15.1
37
+ git clone https://github.com/rnpgp/rnp.git -b v0.15.2
38
38
39
39
# Install required packages
40
40
sudo apt install g++-8 cmake libbz2-dev zlib1g-dev libjson-c-dev \
@@ -70,7 +70,7 @@ Prerequisite: please ensure `git` is installed on the system.
70
70
[source,console]
71
71
----
72
72
# Clone the repository by version tag (or omit it to get the latest sources)
73
- git clone https://github.com/rnpgp/rnp.git -b v0.15.1
73
+ git clone https://github.com/rnpgp/rnp.git -b v0.15.2
74
74
75
75
# Enable access to `testing` packages by editing /etc/apt/sources.list
76
76
# deb http://deb.debian.org/debian testing main
Original file line number Diff line number Diff line change 1
- 0.15.1
1
+ 0.15.2
You can’t perform that action at this time.
0 commit comments