mirror of
https://github.com/lukaszraczylo/go-telegram.git
synced 2026-06-11 23:19:31 +00:00
404411b20c
Replaces the hand-bumped client.Version="0.7.11" with telemetry.SendForModule which reads the actual module version from runtime/debug.BuildInfo.Deps at the consumer's build time. This means future releases (v0.7.12, v0.8.0, …) will be reported by the running bot WITHOUT requiring a manual edit of client/version.go on every tag — consumers just `go get -u` and rebuild. client.Version is preserved as a fallback for replace directives / detached `go run`, and remains overridable via -ldflags. Bumps oss-telemetry to v0.2.1.
22 lines
595 B
Modula-2
22 lines
595 B
Modula-2
module github.com/lukaszraczylo/go-telegram
|
|
|
|
go 1.25.0
|
|
|
|
require (
|
|
github.com/goccy/go-json v0.10.6
|
|
github.com/lukaszraczylo/oss-telemetry v0.2.1
|
|
github.com/stretchr/testify v1.9.0
|
|
github.com/valyala/fasthttp v1.71.0
|
|
golang.org/x/net v0.54.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.2.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/klauspost/compress v1.18.6 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|