Skip to content
Merged
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: 2 additions & 2 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Testkit is a Go module providing a modular builder framework to streamline test
## Working Effectively

### Bootstrap and Dependencies
- Ensure Go 1.26.2+ is installed
- Ensure Go 1.26.3+ is installed
- Work from the repository root
- `go mod tidy` -- downloads and organizes dependencies (takes ~2 seconds)
- `go mod download` -- ensures all dependencies are available
Expand Down Expand Up @@ -151,7 +151,7 @@ pkg/test/ -- main library package (builder.go, examples.go, factory.go, do
```go
module github.com/rios0rios0/testkit

go 1.26.2
go 1.26.3
```

### Example Application Output
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ Exceptions are acceptable depending on the circumstances (critical bug fixes tha

## [Unreleased]

### Changed

- changed the Go version to `1.26.3`
- refreshed `.github/copilot-instructions.md` and `CLAUDE.md` to reflect the Go `1.26.3` version requirement

Comment thread
rios0rios0 marked this conversation as resolved.
## [0.2.0] - 2026-04-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co

## Project

Go testing utility library (`github.com/rios0rios0/testkit`). Provides a modular builder framework for test environment setup. Pure library -- no deployable artifacts. Requires Go 1.26.2+.
Go testing utility library (`github.com/rios0rios0/testkit`). Provides a modular builder framework for test environment setup. Pure library -- no deployable artifacts. Requires Go 1.26.3+.

## Commands

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.2
go 1.26.3
Comment thread
rios0rios0 marked this conversation as resolved.
Loading