Skip to content

Commit f84e41d

Browse files
committed
chore(release): release v2.5.0
1 parent 1342c81 commit f84e41d

2 files changed

Lines changed: 15 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Do this to generate your change history
55

66
## Versions
77

8+
### v2.5.0 (22 May 2026)
9+
* [1342c81](https://github.com/pact-foundation/pact-go/commit/1342c81) - feat(provider): expose verifier error sentinels for errors.Is discrimination (#577) (Stanislav Vodetskyi, Thu May 21 16:45:56 2026 -0700)
10+
* [889dc1e](https://github.com/pact-foundation/pact-go/commit/889dc1e) - fix(deps): update module google.golang.org/grpc to v1.81.1 (#574) (renovate[bot], Mon May 18 10:10:39 2026 +1000)
11+
812
### v2.4.3 (22 April 2026)
913
* [dfe16cc](https://github.com/pact-foundation/pact-go/commit/dfe16cc) - fix: upgrade goreleaser config to v2 and fix workflow_dispatch release trigger (#571) (Copilot, Wed Apr 22 14:17:04 2026 +1000)
1014
* [f7cec64](https://github.com/pact-foundation/pact-go/commit/f7cec64) - fix: resolve "inconsistent definitions" build failure on Go 1.24+ (#568) (Copilot, Wed Apr 22 09:32:21 2026 +1000)

command/version.go

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@ import (
66
"github.com/spf13/cobra"
77
)
88

9-
var Version = "v2.4.3"
10-
var versionCmd = &cobra.Command{
11-
Use: "version",
12-
Short: "Print the version number of Pact Go",
13-
Long: `All software has versions. This is Pact Go's`,
14-
Run: func(cmd *cobra.Command, args []string) {
15-
fmt.Printf("Pact Go CLI %s", Version)
16-
},
17-
}
9+
var (
10+
Version = "v2.5.0"
11+
versionCmd = &cobra.Command{
12+
Use: "version",
13+
Short: "Print the version number of Pact Go",
14+
Long: `All software has versions. This is Pact Go's`,
15+
Run: func(cmd *cobra.Command, args []string) {
16+
fmt.Printf("Pact Go CLI %s", Version)
17+
},
18+
}
19+
)
1820

1921
func init() {
2022
RootCmd.AddCommand(versionCmd)

0 commit comments

Comments
 (0)