1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2025-11-16 20:10:18 +00:00

Compare commits

..

4 Commits

4 changed files with 10 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
# TelegramBotAPI changelog
## 3.0.0
## 3.0.1
**ALL OLD DEPRECATIONS HAVE BEEN REMOVED**

View File

@@ -30,12 +30,13 @@ kotlin {
private List<SourceDirectorySet> findSourcesWithName(String... approximateNames) {
return parent.subprojects
.findAll { it != project }
.collectMany { it.kotlin.sourceSets }
.findAll { sourceSet -> approximateNames.any {
nameToFilter -> sourceSet.name.contains(nameToFilter)
}
}.collect { it.kotlin }
.findAll { it != project && it.hasProperty("kotlin") }
.collectMany { it.kotlin.sourceSets }
.findAll { sourceSet ->
approximateNames.any { nameToFilter ->
sourceSet.name.contains(nameToFilter)
}
}.collect { it.kotlin }
}
Object callback = {

View File

@@ -6,4 +6,4 @@ kotlin.incremental=true
kotlin.incremental.js=true
library_group=dev.inmo
library_version=3.0.0
library_version=3.0.1

View File

@@ -30,7 +30,7 @@ kotlin {
api libs.ktor.client.core
api project(":tgbotapi.ksp:lib")
implementation project(":tgbotapi.ksp:lib")
}
}
commonTest {