Skip to content

Commit 4f18a3a

Browse files
committed
Release 2.2.1
- Set script version to 2.2.1 - Update changelog to specify changes in 2.2.1 release - Add clearer upgrade instructions at top of changelog
1 parent 28eae21 commit 4f18a3a

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,31 @@ The format is based on [Keep a Changelog][1], and this project adheres to
88
[1]: https://keepachangelog.com/en/1.0.0/
99
[2]: https://semver.org/spec/v2.0.0.html
1010

11-
## [Unreleased]
11+
## Steps to Upgrade
12+
13+
To upgrade _transcrypt_ it is not enough to have a newer version on your
14+
system, you must also run the `--upgrade` command in each repository:
15+
16+
1. Check the version of _transcrypt_ on your system:
17+
18+
```bash
19+
$ transcrypt --version
20+
```
21+
22+
2. Check the version of _transcrypt_ in your Git repository, which may be
23+
different:
24+
25+
```bash
26+
$ .git/crypt/transcrypt --version
27+
```
28+
29+
3. Upgrade the version of _transcrypt_ in your Git repository:
30+
31+
```
32+
$ transcrypt --upgrade
33+
```
34+
35+
## [2.2.1] - 2023-02-11
1236

1337
### Fixed
1438

@@ -245,7 +269,8 @@ Since the v0.9.7 release, these are the notable improvements made to transcrypt:
245269

246270
## [0.9.4] - 2014-03-03
247271

248-
[unreleased]: https://github.com/elasticdog/transcrypt/compare/v2.2.0...HEAD
272+
[unreleased]: https://github.com/elasticdog/transcrypt/compare/v2.2.1...HEAD
273+
[2.2.1]: https://github.com/elasticdog/transcrypt/compare/v2.2.0...v2.2.1
249274
[2.2.0]: https://github.com/elasticdog/transcrypt/compare/v2.1.0...v2.2.0
250275
[2.1.0]: https://github.com/elasticdog/transcrypt/compare/v2.0.0...v2.1.0
251276
[2.0.0]: https://github.com/elasticdog/transcrypt/compare/v1.1.0...v2.0.0

transcrypt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set -euo pipefail
1616
##### CONSTANTS
1717

1818
# the release version of this script
19-
readonly VERSION='2.2.0'
19+
readonly VERSION='2.2.1'
2020

2121
# the default cipher to utilize
2222
readonly DEFAULT_CIPHER='aes-256-cbc'

0 commit comments

Comments
 (0)