Skip to content

Commit 8fbc070

Browse files
committed
Version 0.48.0
1 parent ff7ac51 commit 8fbc070

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,24 @@ 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-
**Note:** After updating to this version, you will need to execute the [SQL migration script][unreleased-sql-migration] on your database.
7+
### Added
8+
### Changed
9+
### Deprecated
10+
### Removed
11+
### Fixed
12+
### Security
13+
14+
## [0.48.0] - 2017-08-26
15+
**Note:** After updating to this version, you will need to execute the [SQL migration script][0.48.0-sql-migration] on your database.
816
### Added
917
- New entities, methods, update types and inline keyboard button for Payments (Bot API 3.0).
1018
- Add new methods, fields and objects for working with stickers (Bot API 3.2).
1119
- New fields for Chat, User and Message objects (Bot API 3.3). `is_bot` added to `user` DB table.
1220
### Changed
13-
- [:exclamation:][unreleased-correct-printerror] Corrected `ServerResponse->printError` method to print by default and return by setting `$return` parameter.
21+
- [:exclamation:][0.48.0-bc-correct-printerror] Corrected `ServerResponse->printError` method to print by default and return by setting `$return` parameter.
1422
- Ensure command names are handled as lower case.
15-
### Deprecated
16-
### Removed
1723
### Fixed
1824
- Correctly save `reply_to_message` to DB.
19-
### Security
2025

2126
## [0.47.1] - 2017-08-06
2227
### Added
@@ -31,7 +36,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
3136
- `Telegram::enableAdmin()` now handles duplicate additions properly.
3237
- `Request::getMe()` failure doesn't break cron execution any more.
3338
### Security
34-
- [:exclamation:][0.47.0-private-only-admin-commands] New command parameter `$private_only` to enforce usage in private chats only (set by default for Admin commands).
39+
- [:exclamation:][0.47.0-bc-private-only-admin-commands] New command parameter `$private_only` to enforce usage in private chats only (set by default for Admin commands).
3540

3641
## [0.46.0] - 2017-07-15
3742
### Added
@@ -151,9 +156,9 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
151156
### Deprecated
152157
- Move `hideKeyboard` to `removeKeyboard`.
153158

154-
[unreleased-sql-migration]: https://github.com/php-telegram-bot/core/tree/develop/utils/db-schema-update/0.47.1-unreleased.sql
155-
[unreleased-correct-printerror]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#correct-printerror
156-
[0.47.0-private-only-admin-commands]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#private-only-admin-commands
159+
[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
160+
[0.48.0-bc-correct-printerror]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#correct-printerror
161+
[0.47.0-bc-private-only-admin-commands]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#private-only-admin-commands
157162
[0.46.0-bc-request-class-refactor]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#request-class-refactor
158163
[0.46.0-sql-migration]: https://github.com/php-telegram-bot/core/tree/0.45.0/utils/db-schema-update/0.44.1-0.45.0.sql
159164
[0.45.0-bc-remove-deprecated-methods]: https://github.com/php-telegram-bot/core/wiki/Breaking-backwards-compatibility#remove-deprecated-methods
@@ -163,6 +168,7 @@ Exclamation symbols (:exclamation:) note something of importance e.g. breaking c
163168
[example-bot]: https://github.com/php-telegram-bot/example-bot
164169

165170
[Unreleased]: https://github.com/php-telegram-bot/core/compare/master...develop
171+
[0.48.0]: https://github.com/php-telegram-bot/core/compare/0.47.1...0.48.0
166172
[0.47.1]: https://github.com/php-telegram-bot/core/compare/0.47.0...0.47.1
167173
[0.47.0]: https://github.com/php-telegram-bot/core/compare/0.46.0...0.47.0
168174
[0.46.0]: https://github.com/php-telegram-bot/core/compare/0.45.0...0.46.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.47.1';
33+
protected $version = '0.48.0';
3434

3535
/**
3636
* Telegram API key

0 commit comments

Comments
 (0)