Skip to content

Commit

Permalink
release: v0.0.1-dev2
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Apr 15, 2024
1 parent a750114 commit 5833ba8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .changelog/v0.0.1-dev2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
> 对应核心版本: [**v4.0.0-beta3**](https://github.com/simple-robot/simpler-robot/releases/tag/v4.0.0-beta3)

> [!warning]
> **目前版本处于 `dev` 阶段,代表此版本是一个开发预览版,可能不稳定、可能随时发生更改、且不保证可用性。**

我们欢迎并期望着您的的[反馈](https://github.com/simple-robot/simbot-component-telegram/issues)[协助](https://github.com/simple-robot/simbot-component-telegram/pulls)
感谢您的贡献与支持!

也欢迎您为我们献上一颗 `star`,这是对我们最大的鼓励与认可!
7 changes: 5 additions & 2 deletions buildSrc/src/main/kotlin/P.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,18 @@ object P {

object ComponentTelegram : ProjectDetail() {
const val GROUP = "love.forte.simbot.component"
const val DESCRIPTION = "Kotlin coroutines based Telegram bot API/SDK Kotlin multiplatform library, is also a Simple Robot Component library"
const val DESCRIPTION =
"Kotlin coroutines based Telegram bot API/SDK Kotlin multiplatform library, " +
"is also a Simple Robot Component library"

const val HOMEPAGE = "https://github.com/simple-robot/simbot-component-telegram"

override val group: String get() = GROUP
override val description: String get() = DESCRIPTION
override val homepage: String get() = HOMEPAGE


private val baseVersion = v(0, 0, 1) - v("dev1")
private val baseVersion = v(0, 0, 1) - v("dev2")

val snapshotVersion = baseVersion - Version.SNAPSHOT
override val version = if (isSnapshot()) snapshotVersion else baseVersion
Expand Down

0 comments on commit 5833ba8

Please sign in to comment.