Skip to content

Commit

Permalink
📃 docs: Update version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
caoccao committed Jun 6, 2024
1 parent f876117 commit 9b8a3ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,18 @@
<dependency>
<groupId>com.caoccao.javet</groupId>
<artifactId>swc4j</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
</dependency>
```

```kotlin
// Gradle Kotlin DSL
implementation("com.caoccao.javet:swc4j:0.8.0")
implementation("com.caoccao.javet:swc4j:0.9.0")
```

```groovy
// Gradle Groovy DSL
implementation 'com.caoccao.javet:swc4j:0.8.0'
implementation 'com.caoccao.javet:swc4j:0.9.0'
```

### Transpile
Expand Down
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ object Config {
const val VERSION = Versions.SWC4J
const val URL = "https://github.com/caoccao/swc4j"

const val MODULE_NAME = "$GROUP_ID.$NAME"

object Pom {
const val ARTIFACT_ID = "swc4j"
const val DESCRIPTION =
Expand Down Expand Up @@ -131,7 +133,7 @@ task<Exec>("buildJNIHeaders") {

tasks.jar {
manifest {
attributes["Automatic-Module-Name"] = Config.GROUP_ID
attributes["Automatic-Module-Name"] = Config.MODULE_NAME
}
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/ts/change_swc4j_version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@ class ChangeSwc4jVersion {
}
}

const changeSwc4jVersion = new ChangeSwc4jVersion('0.8.0', '0.9.0');
const changeSwc4jVersion = new ChangeSwc4jVersion('0.9.0', '0.9.0');
changeSwc4jVersion.change()

0 comments on commit 9b8a3ed

Please sign in to comment.