Skip to content

Commit

Permalink
maint: drop go 1.18 (#432)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?

- sparked by #431
- 1.18 has been out of official support since 2023-02-01, when 1.20 was
released

## Short description of the changes

- bump minimum go version to 1.19
- run `go mod tidy`

Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>
  • Loading branch information
codeboten authored Mar 15, 2024
1 parent a870b4f commit d5ecd5f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ workflows:
matrix:
parameters:
go-version:
- "1.18"
- "1.19"
- "1.20"
- "1.21"
build:
jobs:
- test:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This package makes it easy to instrument your Go app to send useful events to [H

## Dependencies

Golang 1.18+
Golang 1.19+

## Contributions

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/honeycombio/beeline-go

go 1.18
go 1.19

require (
github.com/DATA-DOG/go-sqlmock v1.5.2
Expand Down

0 comments on commit d5ecd5f

Please sign in to comment.