Skip to content

Commit 3e7af92

Browse files
committed
Version 0.51.0
Improve changelog to emphasise SQL migration scripts.
1 parent 49260a5 commit 3e7af92

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
55

66
## [Unreleased]
77
### Added
8-
- Implemented new changes for Bot API 3.5 (InputMedia, MediaGroup).
98
### Changed
109
### Deprecated
1110
### Removed
1211
### Fixed
1312
### Security
1413

14+
## [0.51.0] - 2017-12-05
15+
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.51.0-sql-migration] on your database.
16+
### Added
17+
- Implemented new changes for Bot API 3.5 (InputMedia, MediaGroup).
18+
1519
## [0.50.0] - 2017-10-17
1620
### Added
1721
- Finish implementing payments, adding all missing type checks and docblock methods.
@@ -35,7 +39,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
3539
- Channel selection when using `DB::selectChats()`.
3640

3741
## [0.48.0] - 2017-08-26
38-
**Note:** After updating to this version, you will need to execute the [SQL migration script][0.48.0-sql-migration] on your database.
42+
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.48.0-sql-migration] on your database.
3943
### Added
4044
- New entities, methods, update types and inline keyboard button for Payments (Bot API 3.0).
4145
- Add new methods, fields and objects for working with stickers (Bot API 3.2).
@@ -70,7 +74,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
7074
- [:exclamation:][0.46.0-bc-request-class-refactor] Big refactor of the `Request` class, removing most custom method implementations.
7175

7276
## [0.45.0] - 2017-06-25
73-
**Note:** After updating to this version, you will need to execute the [SQL migration script][0.45.0-sql-migration] on your database.
77+
:exclamation: After updating to this version, you will need to execute the [SQL migration script][0.45.0-sql-migration] on your database.
7478
### Added
7579
- Documents can be sent by providing its contents via Psr7 stream (as opposed to passing a file path).
7680
- Allow setting a custom Guzzle HTTP Client for requests (#511).
@@ -179,6 +183,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
179183
### Deprecated
180184
- Move `hideKeyboard` to `removeKeyboard`.
181185

186+
[0.51.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.50.0-0.51.0.sql
182187
[0.50.0-bc-messagegetcommand-return-value]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#messagegetcommand-return-value
183188
[0.48.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.47.1-0.48.0.sql
184189
[0.48.0-bc-correct-printerror]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#correct-printerror
@@ -192,6 +197,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
192197
[example-bot]: https://github.com/php-telegram-bot/example-bot
193198

194199
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
200+
[0.51.0]: https://github.com/php-telegram-bot/core/compare/0.50.0...0.51.0
195201
[0.50.0]: https://github.com/php-telegram-bot/core/compare/0.49.0...0.50.0
196202
[0.49.0]: https://github.com/php-telegram-bot/core/compare/0.48.0...0.49.0
197203
[0.48.0]: https://github.com/php-telegram-bot/core/compare/0.47.1...0.48.0

src/Telegram.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Telegram
3030
*
3131
* @var string
3232
*/
33-
protected $version = '0.50.0';
33+
protected $version = '0.51.0';
3434

3535
/**
3636
* Telegram API key

0 commit comments

Comments
 (0)