Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Exceptions are acceptable depending on the circumstances (critical bug fixes tha

## [Unreleased]

### Changed

- changed the Go version to `1.26.2` and updated all module dependencies
Comment on lines +19 to +21
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This entry says "updated all module dependencies", but go.mod currently has no require block and the repo has no go.sum, so there may not have been any dependency updates in this PR. Consider rewording the Unreleased note (or the PR description) to reflect the actual change (Go version bump only), or include the dependency diff if something is missing from the PR.

Copilot uses AI. Check for mistakes.

## [0.1.1] - 2026-03-12

### Changed
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 github.com/rios0rios0/testkit

go 1.26.1
go 1.26.2
Copy link

Copilot AI Apr 8, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The repo docs include a go.mod Contents snippet that still shows go 1.26.0, but this PR bumps the module to go 1.26.2. To avoid confusion for contributors, update the snippet (and any other exact-version references) to match the new Go directive.

Copilot uses AI. Check for mistakes.
Loading