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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ mv golangci-lint $GOPATH/bin/

## Go Get
```bash
go get github.com/digitalstraw/propro/v2/
go get github.com/digitalstraw/propro/v3/
```


Expand Down
2 changes: 1 addition & 1 deletion cmd/propro/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/digitalstraw/propro/v2/pkg/analyzer"
"github.com/digitalstraw/propro/v3/pkg/analyzer"
"golang.org/x/tools/go/analysis/singlechecker"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/digitalstraw/propro/v2
module github.com/digitalstraw/propro/v3

go 1.24.0

Expand Down
2 changes: 1 addition & 1 deletion testdata/src/config/entities.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package config

import "github.com/digitalstraw/propro/v2/testdata/src/protectall"
import "github.com/digitalstraw/propro/v3/testdata/src/protectall"

var EntityList = []any{
&protectall.Entity{},
Expand Down
2 changes: 1 addition & 1 deletion testdata/src/config2/entities.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package config2

import "github.com/digitalstraw/propro/v2/testdata/src/protectselected"
import "github.com/digitalstraw/propro/v3/testdata/src/protectselected"

var EntityList = []any{
&protectselected.Entity{},
Expand Down
Loading