mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2025-12-25 15:45:47 +00:00
Compare commits
4 Commits
2.0.2
...
8243acd69e
| Author | SHA1 | Date | |
|---|---|---|---|
| 8243acd69e | |||
| 8081602a39 | |||
| 6fd85dbc56 | |||
| 8d6f4ba136 |
@@ -1,5 +1,12 @@
|
|||||||
# TelegramBotAPI changelog
|
# TelegramBotAPI changelog
|
||||||
|
|
||||||
|
## 2.0.3
|
||||||
|
|
||||||
|
* `Core`:
|
||||||
|
* New function `regularln` for simple creating of `RegularTextSource` with new line in the end
|
||||||
|
* `Versions`:
|
||||||
|
* `MicroUtils`: `0.11.0` -> `0.11.3`
|
||||||
|
|
||||||
## 2.0.2
|
## 2.0.2
|
||||||
|
|
||||||
* `Versions`:
|
* `Versions`:
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ korlibs_version=2.7.0
|
|||||||
uuid_version=0.4.1
|
uuid_version=0.4.1
|
||||||
ktor_version=2.0.2
|
ktor_version=2.0.2
|
||||||
|
|
||||||
micro_utils_version=0.11.0
|
micro_utils_version=0.11.3
|
||||||
|
|
||||||
javax_activation_version=1.1.1
|
javax_activation_version=1.1.1
|
||||||
|
|
||||||
@@ -20,6 +20,6 @@ javax_activation_version=1.1.1
|
|||||||
dokka_version=1.6.21
|
dokka_version=1.6.21
|
||||||
|
|
||||||
library_group=dev.inmo
|
library_group=dev.inmo
|
||||||
library_version=2.0.2
|
library_version=2.0.3
|
||||||
|
|
||||||
github_release_plugin_version=2.3.7
|
github_release_plugin_version=2.3.7
|
||||||
|
|||||||
@@ -18,3 +18,6 @@ data class RegularTextSource @RiskFeature(DirectInvocationOfTextSourceConstructo
|
|||||||
|
|
||||||
@Suppress("NOTHING_TO_INLINE")
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
inline fun regular(text: String) = RegularTextSource(text)
|
inline fun regular(text: String) = RegularTextSource(text)
|
||||||
|
|
||||||
|
@Suppress("NOTHING_TO_INLINE")
|
||||||
|
inline fun regularln(text: String) = regular("$text\n")
|
||||||
|
|||||||
Reference in New Issue
Block a user