Skip to content

Commit

Permalink
Use of exec.ErrDot requires Go 1.19+ (#104)
Browse files Browse the repository at this point in the history
exec.ErrDot was added to Go in version 1.19. Because this module has a dependency on that sentinel error, specifying the minimum Go version in the mod file helps consumers know the minimum supported Go version.
  • Loading branch information
rodaine authored Dec 8, 2022
1 parent 8d36144 commit b6c0b62
Showing 1 changed file with 1 addition and 1 deletion.
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/SebastiaanKlippert/go-wkhtmltopdf

go 1.18
go 1.19

require github.com/stretchr/testify v1.7.1

Expand Down

0 comments on commit b6c0b62

Please sign in to comment.