Skip to content

Commit

Permalink
Prepare for release 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
illarionov committed Jan 9, 2025
1 parent fc1636f commit c4de48b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## 0.1 - 2025-01-09

### Added

- WASI Preview 1 implementation

## [0.1-alpha01] - 2024-09-08

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Wasi-emscripten-host

Wasi-emscripten-host is a Kotlin Multiplatform library that implements the WebAssembly host functions of the
[Emscripten] environment, and some functions defined in the WASI Preview 1 specification.
Kotlin Multiplatform implementation of WebAssembly host functions from WASI Preview 1 system interface and from
[Emscripten] environment.

It is designed to execute WebAssembly binaries compiled using the Emscripten toolchain on JVM/Multiplatform WebAssembly
It is designed to execute WebAssembly binaries compiled using the Emscripten toolchain on JVM/Multiplatform WebAssembly
runtimes such as [GraalVM][GraalWasm], [Chicory], and [Chasm].

For more information, visit the project website: [weh.released.at](https://weh.released.at)

[Emscripten]: https://emscripten.org/
[Chasm]: https://github.com/CharlieTap/chasm
[Chicory]: https://github.com/dylibso/chicory
[Chicory]: https://chicory.dev/
[GraalWasm]: https://www.graalvm.org/latest/reference-manual/wasm/

## License
Expand All @@ -19,7 +19,7 @@ These services are licensed under Apache 2.0 License. Authors and contributors a
[Authors](AUTHORS) file.

```
Copyright 2024 wasi-emscripten-host project authors and contributors.
Copyright 2024-2025 wasi-emscripten-host project authors and contributors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion config/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
#

weh_version = 0.1-alpha02-SNAPSHOT
weh_version = 0.1

# weh_bindings_chasm_version = 0.1-alpha02-SNAPSHOT
# weh_bindings_chicory_version = 0.1-alpha02-SNAPSHOT
Expand Down
2 changes: 1 addition & 1 deletion samples/wasm-maven/chicory-emscripten-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>at.released.weh</groupId>
<artifactId>bindings-chicory-emscripten-jvm</artifactId>
<version>0.1-alpha02-SNAPSHOT</version>
<version>0.1</version>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
Expand Down
2 changes: 1 addition & 1 deletion samples/wasm-maven/chicory-wasip1-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<dependency>
<groupId>at.released.weh</groupId>
<artifactId>bindings-chicory-wasip1-jvm</artifactId>
<version>0.1-alpha02-SNAPSHOT</version>
<version>0.1</version>
</dependency>
<dependency>
<groupId>com.dylibso.chicory</groupId>
Expand Down
2 changes: 1 addition & 1 deletion samples/wasm-maven/graalvm-emscripten-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<dependency>
<groupId>at.released.weh</groupId>
<artifactId>bindings-graalvm241-emscripten-jvm</artifactId>
<version>0.1-alpha02-SNAPSHOT</version>
<version>0.1</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion samples/wasm-maven/graalvm-wasip1-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<dependency>
<groupId>at.released.weh</groupId>
<artifactId>bindings-graalvm241-wasip1-jvm</artifactId>
<version>0.1-alpha02-SNAPSHOT</version>
<version>0.1</version>
</dependency>
</dependencies>
</project>

0 comments on commit c4de48b

Please sign in to comment.