Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
Added a missing log
Bumped version
  • Loading branch information
HirbodBehnam committed May 24, 2022
1 parent 0dd75a3 commit 65302a6
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 88 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
goos: [ linux, windows, darwin ]
goarch: [ "386", amd64 ]
goarch: [ "386", amd64, arm64 ]
exclude:
- goarch: "386"
goos: darwin
Expand Down
1 change: 1 addition & 0 deletions api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ func downloadEndpoint(w http.ResponseWriter, r *http.Request) {
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
_, _ = w.Write([]byte(err.Error()))
log.Println("cannot get client from pool:", err)
return
}
defer clients.ClientPools.Put(clientAPI)
Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
)

const Version = "1.5.1"
const Version = "1.5.2"

// Config of the application
var Config struct {
Expand Down
16 changes: 8 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@ go 1.18
require (
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/gotd/td v0.56.0
github.com/gotd/td v0.59.0
go.etcd.io/bbolt v1.3.6
)

require (
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
github.com/go-faster/errors v0.5.0 // indirect
github.com/go-faster/jx v0.34.0 // indirect
github.com/go-faster/jx v0.35.0 // indirect
github.com/go-faster/xor v0.3.0 // indirect
github.com/google/go-cmp v0.5.4 // indirect
github.com/gotd/ige v0.2.2 // indirect
github.com/gotd/neo v0.1.5 // indirect
github.com/klauspost/compress v1.15.1 // indirect
github.com/segmentio/asm v1.1.4 // indirect
github.com/klauspost/compress v1.15.4 // indirect
github.com/segmentio/asm v1.2.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.21.0 // indirect
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect
golang.org/x/net v0.0.0-20220412020605-290c469a71a5 // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad // indirect
golang.org/x/crypto v0.0.0-20220518034528-6f7dac969898 // indirect
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
nhooyr.io/websocket v1.8.7 // indirect
rsc.io/qr v0.2.0 // indirect
)
Loading

0 comments on commit 65302a6

Please sign in to comment.