release 2.2.0

This commit is contained in:
Justin
2020-07-10 15:48:08 -05:00
parent 3267969668
commit 77d39c1bc3
4 changed files with 7 additions and 5 deletions

View File

@@ -1,3 +1,4 @@
- Justin Keller ([nodesocket](https://github.com/nodesocket))
- Manuel Wildauer ([int9h](https://github.com/int9h))
- Adam Daniels ([adam12](https://github.com/adam12))
- Nicolas Le Gall ([Darkitty](https://github.com/Darkitty))

View File

@@ -1,9 +1,10 @@
CHANGELOG
=========
## 2.1.2 - *7/10/2020*
## 2.2.0 - *7/10/2020*
- Append `.aes` file extension instead of substituting when encrypting
- Append `.aes` file extension instead of substituting when encrypting.
- Use derivation function _(-pbkdf2)_ when encrypting. See [pull request](https://github.com/nodesocket/cryptr/pull/3).
## 2.1.1 - *3/25/2019*

View File

@@ -84,7 +84,7 @@ Usage: cryptr command <command-specific-options>
```
➜ cryptr version
cryptr 2.1.1
cryptr 2.2.0
```
### default
@@ -93,7 +93,7 @@ cryptr 2.1.1
```
➜ cryptr
cryptr 2.1.1
cryptr 2.2.0
Usage: cryptr command <command-specific-options>

View File

@@ -18,7 +18,7 @@
set -eo pipefail; [[ $TRACE ]] && set -x
readonly VERSION="2.1.2"
readonly VERSION="2.2.0"
readonly OPENSSL_CIPHER_TYPE="aes-256-cbc"
cryptr_version() {