Compare commits

..

6 Commits

Author SHA1 Message Date
137a6c1c26 update dependencies 2022-08-27 13:45:26 +06:00
74f1ad496e start 2.2.0 2022-08-27 13:43:51 +06:00
e4a1e1f0be Merge pull request #42 from InsanusMokrassar/2.1.1
2.1.1
2022-08-20 22:30:51 +06:00
7286cf401b make it possible to get bot from DI 2022-08-20 22:10:08 +06:00
cdf94ec2eb start 2.1.1 2022-08-20 22:08:13 +06:00
5bfabfa284 Merge pull request #41 from InsanusMokrassar/2.1.0
2.1.0
2022-08-18 12:43:39 +06:00
4 changed files with 19 additions and 5 deletions

View File

@@ -1,5 +1,18 @@
# Changelog
## 2.2.0
* `Versions`:
* `serialization`: `1.4.0`
* `tgbotapi`: `3.2.0`
* `microutils`: `0.12.4`
* `kslog`: `0.5.1`
## 2.1.1
* `Bot`:
* Now it is possible to get bot from `koin`
## 2.1.0
* `Versions`:

View File

@@ -45,6 +45,7 @@ data class PlaguBot(
single { config.databaseConfig.database }
single { defaultJsonFormat }
single { this@PlaguBot }
single { bot }
includes(
config.plugins.mapNotNull {

View File

@@ -5,4 +5,4 @@ kotlin.js.generate.externals=true
kotlin.incremental=true
group=dev.inmo
version=2.1.0
version=2.2.0

View File

@@ -1,12 +1,12 @@
[versions]
kt = "1.7.10"
kt-serialization = "1.4.0-RC"
kt-serialization = "1.4.0"
kt-coroutines = "1.6.4"
microutils = "0.12.1"
tgbotapi = "3.1.1"
kslog = "0.5.0"
microutils = "0.12.4"
tgbotapi = "3.2.0"
kslog = "0.5.1"
jb-exposed = "0.39.2"
jb-dokka = "1.7.10"