Skip to content

Commit df41bb1

Browse files
author
Tobias de Bruijn
committed
Version bump
1 parent fce270c commit df41bb1

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

build.gradle

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,17 @@ task ghActions(type: ShadowJar) {
6767
destinationDirectory = file("$rootDir/actions")
6868
}
6969

70-
task copyNativeBinaries(type: Copy) {
70+
task copyNativeBinaries() {
71+
dependsOn('copyLinux')
72+
dependsOn('copyWindows')
73+
}
74+
75+
task copyLinux(type: Copy) {
7176
from "$rootDir/librconsole/target/x86_64-unknown-linux-gnu/release/librconsole.so"
7277
into "$buildDir/resources/main/x86_64/linux/"
73-
78+
}
79+
80+
task copyWindows(type: Copy) {
7481
from "$rootDir/librconsole/target/x86_64-pc-windows-gnu/release/librconsole.dll"
7582
into "$buildDir/resources/main/x86_64/windows/"
7683
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pluginVersion = 0.1
1+
pluginVersion = 0.2

librconsole/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librconsole"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Tobias de Bruijn <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)