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
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ run:
# Define the Go version limit.
# Mainly related to generics support since go1.18.
# Default: use Go version from the go.mod file, fallback on the env var `GOVERSION`, fallback on 1.17
go: "1.24.3"
go: "1.24.4"

exclusions:
# Which file paths to exclude: they will be analyzed, but issues from them won't be reported.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ lint: prepare-toolchain
staticcheck ./...

@echo "\nRunning golangci-lint $(GOLANGCI_LINT_VERSION)..."
golangci-lint run ./......
golangci-lint run --fix -v ./......

# check_command_exists is a helper function that checks if a command exists.
define check_command_exists
Expand Down
4 changes: 2 additions & 2 deletions __examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/sirupsen/logrus"
"go.uber.org/zap"

"github.com/hyp3rd/ewrap/pkg/ewrap"
"github.com/hyp3rd/ewrap/pkg/ewrap/adapters"
"github.com/hyp3rd/ewrap"
"github.com/hyp3rd/ewrap/adapters"
)

func main() {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/docs/examples/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"context"
"fmt"

"github.com/hyp3rd/ewrap/pkg/ewrap"
"github.com/hyp3rd/ewrap"
)

func main() {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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/hyp3rd/ewrap

go 1.24.3
go 1.24.4

require (
emperror.dev/emperror v0.33.0
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/hyp3rd/ewrap/pkg/ewrap"
"github.com/hyp3rd/ewrap"
)

// mockLogger implements a minimal logger for benchmarking
Expand Down
2 changes: 1 addition & 1 deletion test/comparison_benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/hashicorp/go-multierror"
"go.uber.org/multierr"

"github.com/hyp3rd/ewrap/pkg/ewrap"
"github.com/hyp3rd/ewrap"
)

// This test suite compares our implementation against popular error handling libraries
Expand Down
2 changes: 1 addition & 1 deletion test/profile_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/hyp3rd/ewrap/pkg/ewrap"
"github.com/hyp3rd/ewrap"
)

// TestProfileErrorOperations runs a comprehensive profiling suite for error operations.
Expand Down
File renamed without changes.
File renamed without changes.