Skip to content

Commit

Permalink
Reapply "Prepare for release 0.1-alpha04"
Browse files Browse the repository at this point in the history
This reverts commit 09abd5d.
  • Loading branch information
illarionov committed Jun 20, 2024
1 parent 09abd5d commit 1ce6097
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [0.1-alpha04] — 2024-06-20

### Added

- Add experimental androidx.sqlite.SQLiteDriver implementation

### Removed

- Multithreading (not working)

## [0.1-alpha03] — 2024-05-11

### Added
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ Add the dependencies:

```kotlin
dependencies {
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-open-helper:0.1-alpha03")

testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-open-helper:0.1-alpha04")
// Runtime environment for executing SQLite Wasm code based on GraalVM (Sqlite Embedder)
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-graalvm:0.1-alpha03")
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-graalvm:0.1-alpha04")

// Optional: implementation of the runtime environment based on the Chicory library.
// It can be used to execute webassembly code instead of the GraalVM embedder
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-chicory:0.1-alpha03")
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-chicory:0.1-alpha04")

// Sqlite WebAssembly binary
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-android-wasm-emscripten-icu-mt-pthread-346:0.1-alpha04")
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-android-wasm-emscripten-icu-mt-pthread-346:0.1-alpha05")
}
```

Expand Down Expand Up @@ -101,7 +101,7 @@ Installation:

```kotlin
dependencies {
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-graalvm:0.1-alpha03")
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-graalvm:0.1-alpha04")

// Sqlite WebAssembly binary with multithreading enabled
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-android-wasm-emscripten-icu-mt-pthread-345:0.1-alpha04")
Expand Down Expand Up @@ -175,10 +175,10 @@ Installation:

```kotlin
dependencies {
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-chicory:0.1-alpha03")
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-chicory:0.1-alpha04")

// Sqlite WebAssembly binary
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-android-wasm-emscripten-icu-346:0.1-alpha04")
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-android-wasm-emscripten-icu-346:0.1-alpha05")
}
```

Expand Down Expand Up @@ -206,10 +206,10 @@ Installation:

```kotlin
dependencies {
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-chasm:0.1-alpha03")
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-embedder-chasm:0.1-alpha04")

// Sqlite WebAssembly binary
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-android-wasm-emscripten-icu-346:0.1-alpha04")
testImplementation("ru.pixnews.wasm-sqlite-open-helper:sqlite-android-wasm-emscripten-icu-346:0.1-alpha05")
}
```

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
#

wsoh_version = 0.1-alpha04-SNAPSHOT
wsoh_version = 0.1-alpha04

# wsoh_common_api_version = 0.1-alpha01-SNAPSHOT
# wsoh_common_cleaner_version = 0.1-alpha01-SNAPSHOT
Expand Down

0 comments on commit 1ce6097

Please sign in to comment.