Skip to content

Commit

Permalink
📃 docs: Update release to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
caoccao committed Oct 21, 2024
1 parent f3cdad1 commit b7b6d9e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

JavetBuddy is [Javet](https://github.com/caoccao/Javet) + [ByteBuddy](https://bytebuddy.net/). JavetBuddy enhances JVM via bytecode by JavaScript.

## Features

* Inject ad-hoc non-final Java Class by JavaScript
* Extend non-final Java Class by JavaScript
* Call `$super` in Derived Class

## Dependencies

### Maven
Expand All @@ -14,7 +20,7 @@ JavetBuddy is [Javet](https://github.com/caoccao/Javet) + [ByteBuddy](https://by
<dependency>
<groupId>com.caoccao.javet.buddy</groupId>
<artifactId>javet-buddy</artifactId>
<version>0.3.0</version>
<version>0.4.0</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
Expand All @@ -26,14 +32,14 @@ JavetBuddy is [Javet](https://github.com/caoccao/Javet) + [ByteBuddy](https://by
### Gradle Kotlin DSL

```kotlin
implementation("com.caoccao.javet.buddy:javet-buddy:0.3.0")
implementation("com.caoccao.javet.buddy:javet-buddy:0.4.0")
implementation("net.bytebuddy:byte-buddy:1.15.5")
```

### Gradle Groovy DSL

```groovy
implementation 'com.caoccao.javet.buddy:javet-buddy:0.3.0'
implementation 'com.caoccao.javet.buddy:javet-buddy:0.4.0'
implementation 'net.bytebuddy:byte-buddy:1.15.5'
```

Expand Down
2 changes: 1 addition & 1 deletion docs/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Upgraded ByteBuddy to v1.15.5
* Supported calling super
* Supported extending an existing Java class
* Added ``DynamicObjectExtendHandler``
* Added `DynamicObjectExtendHandler`

## 0.3.0

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

const changeVersion = new ChangeVersion("0.3.0", "0.4.0");
const changeVersion = new ChangeVersion("0.4.0", "0.4.0");
changeVersion.change();

0 comments on commit b7b6d9e

Please sign in to comment.