Skip to content

Commit

Permalink
go.mod: Drop constraint to 1.20
Browse files Browse the repository at this point in the history
Using 'go 1.21.4' forces everyone to upgrade to the latest release.
  • Loading branch information
abhinav committed Nov 29, 2023
1 parent a6f9caf commit 7cb3f55
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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).

## Unreleased
### Changed
- Lower `go` directive in go.mod to 1.20
to allow use with older versions.

## v0.1.0 - 2023-11-28

Introducing errtrace, an experimental library
Expand Down
2 changes: 1 addition & 1 deletion assets/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module braces.dev/errtrace/assets

go 1.21.4
go 1.20

// This go.mod exists to avoid having the assets directory
// be shipped as part of the Go module.
2 changes: 1 addition & 1 deletion benchext/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module braces.dev/errtrace/benchext

go 1.21.1
go 1.20

replace braces.dev/errtrace => ../

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module braces.dev/errtrace

go 1.21
go 1.20

0 comments on commit 7cb3f55

Please sign in to comment.