Skip to content

Commit

Permalink
chore: update version number to v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gudzpoz committed Jun 28, 2024
1 parent 5aed5a6 commit 5c09598
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ To include LuaJava into your project, you need to include two artifacts, one for

```groovy
// Example: LuaJIT with Desktop natives
implementation 'party.iroiro.luajava:luajit:4.0.0'
runtimeOnly 'party.iroiro.luajava:luajit-platform:4.0.0:natives-desktop'
implementation 'party.iroiro.luajava:luajit:4.0.1'
runtimeOnly 'party.iroiro.luajava:luajit-platform:4.0.1:natives-desktop'
```

Different artifacts are provided for different Lua versions and different platforms. Check out [Getting Started](https://gudzpoz.github.io/luajava/getting-started.html) for an overview. Or you may also search in the [Maven Central](https://mvnrepository.com/search?q=party.iroiro.luajava).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'party.iroiro.luajava'
version(System.getenv('IS_RELEASE') == 'true' ? '4.0.0' : '4.0.1-SNAPSHOT')
version(System.getenv('IS_RELEASE') == 'true' ? '4.0.1' : '4.0.2-SNAPSHOT')

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion docs/.vuepress/components/Matrix.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<script setup>
import { ref } from 'vue'
const groupId = 'party.iroiro.luajava'
const version = '4.0.0'
const version = '4.0.1'
const notAvailable = {
}
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The AAR archive bundles native binaries for `armeabi-v7a` `arm64-v8a` `x86` and
ext {
// You may replace `luajit` with `lua51` or other Lua versions
lua = 'luajit'
luaJavaVersion = '4.0.0'
luaJavaVersion = '4.0.1'
}
dependencies {
Expand All @@ -90,7 +90,7 @@ android {
ext {
// You may replace `lua51` with `luajit` or other Lua versions
lua = 'lua51'
luajavaVersion = '4.0.0'
luajavaVersion = '4.0.1'
}
configurations { natives }
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "luajava-docs",
"version": "4.0.0",
"version": "4.0.1",
"description": "Documentation for LuaJava",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 5c09598

Please sign in to comment.