Skip to content

Commit

Permalink
chore: prepare for v4.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gudzpoz committed Aug 28, 2024
1 parent 8e3fbf1 commit 238d468
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ since this library is more or less just a thin wrapper and requires some basic u

| Lua 5.1 | Lua 5.2 | Lua 5.3 | Lua 5.4 | LuaJIT | LuaJ |
|:-------:|:-------:|:-------:|:-------:|:-----------:|:-----------:|
| 5.1.5 | 5.2.4 | 5.3.6 | 5.4.6 | [`5790d25`] | [LuaJ fork] |
| 5.1.5 | 5.2.4 | 5.3.6 | 5.4.6 | [`ae4735f`] | [LuaJ fork] |

</div>

[`5790d25`]: https://github.com/LuaJIT/LuaJIT/commits/5790d253972c9d78a0c2aece527eda5b134bbbf7
[`ae4735f`]: https://github.com/LuaJIT/LuaJIT/commits/ae4735f621d89d84758769b76432d2319dda9827

[LuaJ fork]: https://github.com/wagyourtail/luaj

Expand All @@ -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.1'
runtimeOnly 'party.iroiro.luajava:luajit-platform:4.0.1:natives-desktop'
implementation 'party.iroiro.luajava:luajit:4.0.2'
runtimeOnly 'party.iroiro.luajava:luajit-platform:4.0.2: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.1' : '4.0.2-SNAPSHOT')
version(System.getenv('IS_RELEASE') == 'true' ? '4.0.2' : '4.0.3-SNAPSHOT')

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/components/Matrix.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<script setup>
import { ref } from 'vue';
const groupId = 'party.iroiro.luajava';
const version = '4.0.1';
const version = '4.0.2';
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 @@ -68,7 +68,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.1'
luaJavaVersion = '4.0.2'
}
dependencies {
Expand All @@ -94,7 +94,7 @@ android {
ext {
// You may replace `lua51` with `luajit` or other Lua versions
lua = 'lua51'
luajavaVersion = '4.0.1'
luajavaVersion = '4.0.2'
}
configurations { natives }
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@ Currently:

| Lua 5.1 | Lua 5.2 | Lua 5.3 | Lua 5.4 | LuaJIT | LuaJ |
|:-------:|:-------:|:-------:|:-------:|:-----------:|:-----------:|
| 5.1.5 | 5.2.4 | 5.3.6 | 5.4.6 | [`5790d25`] | [LuaJ fork] |
| 5.1.5 | 5.2.4 | 5.3.6 | 5.4.6 | [`ae4735f`] | [LuaJ fork] |

</div>

[`5790d25`]: https://github.com/LuaJIT/LuaJIT/commits/5790d253972c9d78a0c2aece527eda5b134bbbf7
[`ae4735f`]: https://github.com/LuaJIT/LuaJIT/commits/ae4735f621d89d84758769b76432d2319dda9827

[LuaJ fork]: https://github.com/wagyourtail/luaj

Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "luajava-docs",
"version": "4.0.1",
"version": "4.0.2",
"description": "Documentation for LuaJava",
"type": "module",
"main": "index.js",
Expand All @@ -21,4 +21,4 @@
"vue": "^3.4.37",
"vuepress": "2.0.0-rc.12"
}
}
}

0 comments on commit 238d468

Please sign in to comment.