Skip to content

Releases: semog/go-bot-api

v5.5.1

06 Jan 01:05
Compare
Choose a tag to compare

This contains the enhanced wrapper around the Bot API, with support
for Go modules. It is backwards compatible with the 5.5.1 API version.
Fixed semantic import path for major version number Go Modules
versioning. The import path must contain a /v5 at the end.

Example import path by an application referencing this module:

go.mod
require github.com/semog/go-bot-api/v5 v5.5.1

sourcefile.go
import tg "github.com/semog/go-bot-api/v5"

v4.7.0

08 Sep 07:23
Compare
Choose a tag to compare

This contains the enhanced wrapper around the Bot API, with support
for Go modules. It is backwards compatible with the 4.6.0 API version.
Fixed semantic import path for major version number Go Modules
versioning. The import path must contain a /v4 at the end.

Example import path by an application referencing this module:

go.mod
require github.com/semog/go-bot-api/v4 v4.7.0

sourcefile.go
import tg "github.com/semog/go-bot-api/v4"