Skip to content

Commit

Permalink
bump go to 1.16; update org/github names
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Crawley committed May 9, 2021
1 parent 412a5a4 commit 28930e8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .traefik.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
displayName: DenyIP Plugin
type: middleware

import: github.com/notsureifkevin/denyip
import: github.com/kevtainer/denyip

summary: 'DenyIP is a middleware plugin which accepts IP addresses or IP address ranges and blocks requests originating from those IPs.'

Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cache:
jobs:
fast_finish: true
include:
- go: 1.14.x
- go: 1.16.x
env: STABLE=true
- go: 1.x
- go: tip
Expand Down
2 changes: 1 addition & 1 deletion denyip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"net/http/httptest"
"testing"

"github.com/notsureifkevin/denyip"
"github.com/kevtainer/denyip"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/notsureifkevin/denyip
module github.com/kevtainer/denyip

go 1.14
go 1.16

require github.com/stretchr/testify v1.6.1
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DenyIP

DenyIP is a middleware plugin for [Traefik](https://github.com/containous/traefik) which accepts IP addresses or IP address ranges and blocks requests originating from those IPs.
DenyIP is a middleware plugin for [Traefik](https://github.com/traefik/traefik) which accepts IP addresses or IP address ranges and blocks requests originating from those IPs.

## Configuration

Expand All @@ -14,8 +14,8 @@ experimental:
token: "xxxxx"
plugins:
denyip:
modulename = "github.com/notsureifkevin/denyip"
version = "v0.1.0"
modulename = "github.com/kevtainer/denyip"
version = "v1.0.0"

entryPoints:
http:
Expand Down

0 comments on commit 28930e8

Please sign in to comment.