Skip to content

Commit 8d1ed51

Browse files
committedJun 26, 2019
Version 0.58.0
1 parent 4cc9043 commit 8d1ed51

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed
 

‎CHANGELOG.md

+16-6
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,28 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
44
Exclamation symbols (:exclamation:) note something of importance e.g. breaking changes. Click them to learn more.
55

66
## [Unreleased]
7-
:exclamation: After updating to this version, you will need to execute the [SQL migration script][unreleased-sql-migration] on your database.### Added
7+
### Added
8+
### Changed
9+
### Deprecated
10+
### Removed
11+
### Fixed
12+
### Security
13+
14+
## [0.58.0] - 2019-06-26
15+
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.58.0-sql-migration] on your database.
16+
### Added
817
- New funding and support details. (#971)
918
- Custom issue templates. (#972)
1019
- Bot API 4.3 (Seamless Telegram Login, `LoginUrl`) (#957)
1120
- `reply_markup` field to `Message` entity. (#957)
1221
### Changed
1322
- Use PSR-12 for code style. (#966)
1423
- Some general housekeeping. (#972)
15-
- [:exclamation:][unreleased-bc-return-value-of-empty-entity-properties] Return an empty array for Entity properties with no items, instead of `null`. (#969)
24+
- [:exclamation:][0.58.0-bc-return-value-of-empty-entity-properties] Return an empty array for Entity properties with no items, instead of `null`. (#969)
1625
- `TelegramLog` now adheres to [PSR-3] `LoggerInterface` and allows custom logger implementations. (#964)
1726
### Deprecated
1827
- Old logging that uses Monolog still works but will be removed in the near future. Use `TelegramLog::initialize($logger, $update_logger);` from now on. (#964)
19-
- [:exclamation:][unreleased-bc-startcommand-is-now-a-usercommand] `StartCommand` is now a `UserCommand` (not `SystemCommand` any more). (#970)
28+
- [:exclamation:][0.58.0-bc-startcommand-is-now-a-usercommand] `StartCommand` is now a `UserCommand` (not `SystemCommand` any more). (#970)
2029
### Removed
2130
- Botan.io integration completely removed. (#968)
2231
### Fixed
@@ -281,9 +290,9 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
281290
### Deprecated
282291
- Move `hideKeyboard` to `removeKeyboard`.
283292

284-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/unreleased.sql
285-
[unreleased-bc-return-value-of-empty-entity-properties]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility##return-value-of-empty-entity-properties
286-
[unreleased-bc-startcommand-is-now-a-usercommand]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#startcommand-is-now-a-usercommand
293+
[0.58.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.57.0-0.58.0.sql
294+
[0.58.0-bc-return-value-of-empty-entity-properties]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#return-value-of-empty-entity-properties
295+
[0.58.0-bc-startcommand-is-now-a-usercommand]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#startcommand-is-now-a-usercommand
287296
[0.57.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.56.0-0.57.0.sql
288297
[0.55.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/master/utils/db-schema-update/0.54.1-0.55.0.sql
289298
[0.55.0-bc-move-animation-out-of-games-namespace]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#move-animation-out-of-games-namespace
@@ -305,6 +314,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
305314
[PSR-3]: https://www.php-fig.org/psr/psr-3
306315

307316
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
317+
[0.58.0]: https://github.com/php-telegram-bot/core/compare/0.57.0...0.58.0
308318
[0.57.0]: https://github.com/php-telegram-bot/core/compare/0.56.0...0.57.0
309319
[0.56.0]: https://github.com/php-telegram-bot/core/compare/0.55.1...0.56.0
310320
[0.55.1]: https://github.com/php-telegram-bot/core/compare/0.55.0...0.55.1

‎src/Telegram.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Telegram
3030
*
3131
* @var string
3232
*/
33-
protected $version = '0.57.0';
33+
protected $version = '0.58.0';
3434

3535
/**
3636
* Telegram API key
File renamed without changes.

0 commit comments

Comments
 (0)