Skip to content

Commit

Permalink
Release 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurty committed Sep 9, 2024
1 parent af3bb46 commit d6a742f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ system, you must also run the `--upgrade` command in each repository:
$ transcrypt --upgrade
```

## [Unreleased]
## [2.3.0] - 2024-09-10

### Added

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

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

### Changed

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

## [2.2.3] - 2023-03-09

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

## [0.9.4] - 2014-03-03

[unreleased]: https://github.com/elasticdog/transcrypt/compare/v2.2.3...HEAD
[unreleased]: https://github.com/elasticdog/transcrypt/compare/v2.3.0...HEAD
[2.3.0]: https://github.com/elasticdog/transcrypt/compare/v2.2.3...v2.3.0
[2.2.3]: https://github.com/elasticdog/transcrypt/compare/v2.2.2...v2.2.3
[2.2.2]: https://github.com/elasticdog/transcrypt/compare/v2.2.1...v2.2.2
[2.2.1]: https://github.com/elasticdog/transcrypt/compare/v2.2.0...v2.2.1
Expand Down
4 changes: 2 additions & 2 deletions contrib/bash/transcrypt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ _transcrypt() {
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="-c -p -y -d -r -f -F -u -l -s -e -i -v -h \
--cipher --password --set-openssl-path --yes --display --rekey --flush-credentials --force --uninstall --upgrade --list --show-raw --export-gpg --import-gpg --version --help"
opts="-c -p -y -d -r -f -F -u -l -s -e -i -C -v -h \
--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"

case "${prev}" in
-c | --cipher)
Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/pacman/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Aaron Bull Schaefer <[email protected]>
pkgname=transcrypt
pkgver=2.3.0-pre
pkgver=2.3.0
pkgrel=1
pkgdesc='A script to configure transparent encryption of files within a Git repository'
arch=('any')
Expand Down
2 changes: 1 addition & 1 deletion transcrypt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GREP_OPTIONS=""
##### CONSTANTS

# the release version of this script
readonly VERSION='2.3.0-pre'
readonly VERSION='2.3.0'

# the default cipher to utilize
readonly DEFAULT_CIPHER='aes-256-cbc'
Expand Down

0 comments on commit d6a742f

Please sign in to comment.