Skip to content

Commit

Permalink
✨ feat: Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caoccao committed Apr 24, 2024
1 parent cddba1c commit 054d5aa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

## Features

* Linux (x86_64) + MacOS (x86_64, arm64) + Windows (x86_64)
* Linux + MacOS + Windows
* JavaScript, TypeScript, JSX, TSX, etc.
* Parse
* AST
* Comments
* Tokens
* Transform (Snapshot Build)
* Transform
* Minify
* Multiple Target ES Version
* Source Map
Expand All @@ -35,18 +35,18 @@
<dependency>
<groupId>com.caoccao.javet</groupId>
<artifactId>swc4j</artifactId>
<version>0.4.0</version>
<version>0.5.0</version>
</dependency>
```

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

```groovy
// Gradle Groovy DSL
implementation 'com.caoccao.javet:swc4j:0.4.0'
implementation 'com.caoccao.javet:swc4j:0.5.0'
```

* Run the following Java code.
Expand Down
1 change: 1 addition & 0 deletions docs/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.5.0

* Supported `transform()`
* Supported Windows arm64 and Linux arm64

## 0.4.0

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.4.0', '0.5.0');
const changeSwc4jVersion = new ChangeSwc4jVersion('0.5.0', '0.5.0');
changeSwc4jVersion.change()

0 comments on commit 054d5aa

Please sign in to comment.