Skip to content

Commit

Permalink
Merge pull request #95 from projectdiscovery/dev
Browse files Browse the repository at this point in the history
Bugfix release
  • Loading branch information
ehsandeep authored Jan 15, 2022
2 parents 063715a + f6dec23 commit 2c5715d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17.5-alpine as build-env
FROM golang:1.17.6-alpine as build-env
RUN apk --no-cache add git
RUN go install -v github.com/projectdiscovery/shuffledns/cmd/shuffledns@latest

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/projectdiscovery/shuffledns
go 1.17

require (
github.com/Mzack9999/roundrobin v0.0.0-20211019094217-f3f5553da353
github.com/Mzack9999/roundrobin v0.0.0-20220113175735-77e779fd07d8
github.com/miekg/dns v1.1.45
github.com/projectdiscovery/gologger v1.1.4
github.com/remeh/sizedwaitgroup v1.0.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
github.com/Mzack9999/roundrobin v0.0.0-20211019094217-f3f5553da353 h1:bT3DmkkW7jy6r4gzAz+VcTuDGf4msFjXonsvzsPxlio=
github.com/Mzack9999/roundrobin v0.0.0-20211019094217-f3f5553da353/go.mod h1:jaPtvFne4154rQDj6lyDdPnvHc9II1X/3uXfJtjGKBQ=
github.com/Mzack9999/roundrobin v0.0.0-20220113175735-77e779fd07d8 h1:OC2JcvJoumWvMGjJ8bmhvWAo5dobcdDCZ7WmOgiYEw4=
github.com/Mzack9999/roundrobin v0.0.0-20220113175735-77e779fd07d8/go.mod h1:Rb4V/Q2dqsMgUxQ3Oj8lE/1cwowRrDDn5lsMisLiIcQ=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down
4 changes: 2 additions & 2 deletions pkg/runner/banners.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ const banner = `
__ ________ __
___ / / __ __/ _/ _/ /__ ___/ /__ ___
(_-</ _ \/ // / _/ _/ / -_)/ _ / _ \(_-<
/___/_//_/\_,_/_//_//_/\__/ \_,_/_//_/___/ v1.0.5
/___/_//_/\_,_/_//_//_/\__/ \_,_/_//_/___/ v1.0.6
`

// Version is the current version of naabu
const Version = `v1.0.5`
const Version = `v1.0.6`

// showBanner is used to show the banner to the user
func showBanner() {
Expand Down

0 comments on commit 2c5715d

Please sign in to comment.