Releases: haashemi/tgo
Releases · haashemi/tgo
v1.0.1
v1.0.1
This release comes with two bug fixes and some documentation improvements around filters.
Bug Fixes:
-
Fixed custom
json.Unmarshaler
s trying to read empty data.- It mainly caused the framework to be unable to get updates as it was failing to unmarshal the update.
-
Fixed
filters.Commands
to not be case-sensitive.- When it comes to commands,
/start
and/Start
are both the same thing. This filter lowercases the command it should match for, but not the message's text! Now it lowercases both commands and the message's text.
- When it comes to commands,
Documentation:
- All filters are now fully documented.
- filters package now has its own readme.
v1.0.0
🎉 First stable release!
Breaking changes:
TGO's specific API is same as what is was in v0.1.3
, but there are some breaking changes with Telegram Bot API's update (change log)
- API updated to Bot API v7.0 (by @haashemi )
Bug fixes:
- Fixed api.Download method not using its own http.Client (by @er-azh )