Skip to content

Commit 8a65a97

Browse files
committed
build: rename published maven artifact to dev.firechip:cobs_codec
Drops the _kt suffix, which is kept only for the repository name.
1 parent 04b2e99 commit 8a65a97

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ as a serial/UART, USB, or BLE link.
2929
### Gradle (GitHub Packages)
3030

3131
The library is published to the GitHub Packages Maven registry as
32-
`dev.firechip:cobs_codec_kt`. Add the repository and the dependency:
32+
`dev.firechip:cobs_codec`. Add the repository and the dependency:
3333

3434
```kotlin
3535
repositories {
@@ -45,7 +45,7 @@ repositories {
4545
}
4646

4747
dependencies {
48-
implementation("dev.firechip:cobs_codec_kt:1.0.0")
48+
implementation("dev.firechip:cobs_codec:1.0.0")
4949
}
5050
```
5151

cobs/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ publishing {
5757
from(components["release"])
5858
}
5959
groupId = "dev.firechip"
60-
artifactId = "cobs_codec_kt"
60+
artifactId = "cobs_codec"
6161
version = project.version.toString()
6262
pom {
63-
name = "cobs_codec_kt"
63+
name = "cobs_codec"
6464
description =
6565
"Pure-Kotlin Consistent Overhead Byte Stuffing (COBS) and " +
6666
"COBS/R for Android."

0 commit comments

Comments
 (0)