Skip to content

Commit 52a15a0

Browse files
committed
Release v0.5.0
1 parent 102967b commit 52a15a0

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livesplit-core"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Christopher Serr <christopher.serr@gmail.com>"]
55
documentation = "https://docs.rs/livesplit-core/"
66
repository = "https://github.com/CryZe/livesplit-core"

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Additional Bindings are available for the following programming languages:
1212
- C
1313
- C++
1414
- C#
15-
- Java
15+
- Java with Java Native Access or Java Native Interface
16+
- Kotlin with Java Native Interface
1617
- Ruby
1718
- Python
1819
- JavaScript + TypeScript for Node.js, asm.js and WebAssembly

capi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livesplit-core-capi"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["Christopher Serr <christopher.serr@gmail.com>"]
55

66
[dependencies]

capi/bind_gen/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ fn write_files(classes: &BTreeMap<String, Class>) -> Result<()> {
190190
let mut path = PathBuf::from("..");
191191
path.push("bindings");
192192

193-
remove_dir_all(&path)?;
193+
remove_dir_all(&path).ok();
194194
create_dir_all(&path)?;
195195

196196
path.push("emscripten");

0 commit comments

Comments
 (0)