Skip to content

Commit

Permalink
golang.org/x/net v0.14.0 => v0.15.0 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
s0rg authored Sep 5, 2023
1 parent 1c8400d commit 9fb659e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
13 changes: 13 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,22 @@ linters:
- nonamedreturns
- testpackage
- exhaustruct
- structcheck
- tagliatelle
- nosnakecase
- exhaustruct
- exhaustive
- varnamelen
- interfacer
- scopelint
- deadcode
- maligned
- varcheck
- depguard
- ifshort
- ireturn
- gofumpt
- golint
- gci

linters-settings:
Expand Down
5 changes: 3 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ archives:
- crawley-bin
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
Expand All @@ -44,7 +44,8 @@ archives:

nfpms:
- id: packages
file_name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
file_name_template: >-
'{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
homepage: https://github.com/s0rg/crawley
description: Unix-way web crawler, written in Golang.
maintainer: s0rg
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/s0rg/crawley

go 1.21
go 1.21.0

require (
github.com/s0rg/compflag v1.1.0
github.com/s0rg/set v1.2.0
golang.org/x/net v0.14.0
golang.org/x/net v0.15.0
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ github.com/s0rg/compflag v1.1.0 h1:xhCUPLy+5Ue/Q9I/nIcLti2Ul6P42JYx4UvtYoDXmlQ=
github.com/s0rg/compflag v1.1.0/go.mod h1:XMntVpc3+jpmBe0s8xo4w9swH8T9ARGkMC9HFiDRoUw=
github.com/s0rg/set v1.2.0 h1:53b207YMktNQJXYei/oHuTR5oOO2e9+eieZOncYsh9g=
github.com/s0rg/set v1.2.0/go.mod h1:xz3nDbjF4nyMLvAHvmE7rigXpNrKKTsi6iANznIB1/4=
golang.org/x/net v0.14.0 h1:BONx9s002vGdD9umnlX1Po8vOZmrgH34qlHcD1MfK14=
golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI=
golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8=
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=

0 comments on commit 9fb659e

Please sign in to comment.