Skip to content

Commit d6a742f

Browse files
committed
Release 2.3.0
1 parent af3bb46 commit d6a742f

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ system, you must also run the `--upgrade` command in each repository:
3232
$ transcrypt --upgrade
3333
```
3434

35-
## [Unreleased]
35+
## [2.3.0] - 2024-09-10
3636

3737
### Added
3838

@@ -47,11 +47,14 @@ system, you must also run the `--upgrade` command in each repository:
4747

4848
- Prevent `cd` commands printing out excess details when `CDPATH` is set (#156)
4949
- Fix `--flush` command to work with contexts (#175)
50+
- Fix unbound variable error using `$GIT_REFLOG_ACTION` (issue #150)
5051

5152
### Changed
5253

5354
- Prevent global options set in `GREP_OPTIONS` enviroment variable from
5455
breaking transcrypt's use of grep (#166)
56+
- If `CDPATH` is set then cd will print the path (#156)
57+
- Centralise load and save of password into functions (#141)
5558

5659
## [2.2.3] - 2023-03-09
5760

@@ -318,7 +321,8 @@ Since the v0.9.7 release, these are the notable improvements made to transcrypt:
318321

319322
## [0.9.4] - 2014-03-03
320323

321-
[unreleased]: https://github.com/elasticdog/transcrypt/compare/v2.2.3...HEAD
324+
[unreleased]: https://github.com/elasticdog/transcrypt/compare/v2.3.0...HEAD
325+
[2.3.0]: https://github.com/elasticdog/transcrypt/compare/v2.2.3...v2.3.0
322326
[2.2.3]: https://github.com/elasticdog/transcrypt/compare/v2.2.2...v2.2.3
323327
[2.2.2]: https://github.com/elasticdog/transcrypt/compare/v2.2.1...v2.2.2
324328
[2.2.1]: https://github.com/elasticdog/transcrypt/compare/v2.2.0...v2.2.1

contrib/bash/transcrypt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ _transcrypt() {
2121
COMPREPLY=()
2222
cur="${COMP_WORDS[COMP_CWORD]}"
2323
prev="${COMP_WORDS[COMP_CWORD-1]}"
24-
opts="-c -p -y -d -r -f -F -u -l -s -e -i -v -h \
25-
--cipher --password --set-openssl-path --yes --display --rekey --flush-credentials --force --uninstall --upgrade --list --show-raw --export-gpg --import-gpg --version --help"
24+
opts="-c -p -y -d -r -f -F -u -l -s -e -i -C -v -h \
25+
--cipher --password --set-openssl-path --yes --display --rekey --flush-credentials --force --uninstall --upgrade --list --show-raw --export-gpg --import-gpg --context --list-contexts --version --help"
2626

2727
case "${prev}" in
2828
-c | --cipher)

contrib/packaging/pacman/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: Aaron Bull Schaefer <[email protected]>
22
pkgname=transcrypt
3-
pkgver=2.3.0-pre
3+
pkgver=2.3.0
44
pkgrel=1
55
pkgdesc='A script to configure transparent encryption of files within a Git repository'
66
arch=('any')

transcrypt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ GREP_OPTIONS=""
2222
##### CONSTANTS
2323

2424
# the release version of this script
25-
readonly VERSION='2.3.0-pre'
25+
readonly VERSION='2.3.0'
2626

2727
# the default cipher to utilize
2828
readonly DEFAULT_CIPHER='aes-256-cbc'

0 commit comments

Comments
 (0)