Skip to content

Commit

Permalink
chore: Prepare release 3.0.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lubux committed Aug 14, 2024
1 parent 97da64e commit 219df9f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.0.0-alpha.4] 2024-07-16
### Changed
- Update go-crypto to `1.1.0-alpha.4`.

## [3.0.0-alpha.3] 2024-06-25
### Added
- API to armor data with the option to remove the checksum
Expand Down
4 changes: 2 additions & 2 deletions crypto/signature_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ func Test_SignDetachedWithNonCriticalContext(t *testing.T) {
t.Fatal("Packet was not a signature")
}
notations := sig.Notations
if len(notations) != 1 {
if len(notations) != 2 {
t.Fatal("Wrong number of notations")
}
notation := notations[0]
Expand Down Expand Up @@ -373,7 +373,7 @@ func Test_SignDetachedWithCriticalContext(t *testing.T) {
t.Fatal("Packet was not a signature")
}
notations := sig.Notations
if len(notations) != 1 {
if len(notations) != 2 {
t.Fatal("Wrong number of notations")
}
notation := notations[0]
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/ProtonMail/gopenpgp/v3
go 1.17

require (
github.com/ProtonMail/go-crypto v1.1.0-alpha.3
github.com/ProtonMail/go-crypto v1.1.0-alpha.4
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.7.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/ProtonMail/go-crypto v1.1.0-alpha.3 h1:9e5ge791aoG4gFRE5iqtz2yLbu9DlFwrRkIWPm4AhqI=
github.com/ProtonMail/go-crypto v1.1.0-alpha.3/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
github.com/ProtonMail/go-crypto v1.1.0-alpha.4 h1:u9M9ZUKM8SARn4u2IPVzHX4fg91EEeRpmeqO6lH08fc=
github.com/ProtonMail/go-crypto v1.1.0-alpha.4/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f h1:tCbYj7/299ekTTXpdwKYF8eBlsYsDVoggDAuAjoK66k=
github.com/ProtonMail/go-mime v0.0.0-20230322103455-7d82a3887f2f/go.mod h1:gcr0kNtGBqin9zDW9GOHcVntrwnjrK+qdJ06mWYBybw=
github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
Expand Down

0 comments on commit 219df9f

Please sign in to comment.