Skip to content

Commit 843f4d2

Browse files
committed
Release 0.8.1
1 parent 855d120 commit 843f4d2

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## 0.8.1
4+
> Published 21 November 2025
5+
6+
This release addresses an issue with Wasm/JS,
7+
where the `require` function will no longer be available starting from Kotlin `2.3.20`
8+
(and it was never guaranteed to be available in Wasm/JS).
9+
10+
The release also includes some infrastructure changes.
11+
12+
### Bugfixes
13+
- Fixed the issue with the `require`-function that Wasm/JS-projects migrating to future versions of Kotlin might face [#481](https://github.com/Kotlin/kotlinx-io/pull/481)
14+
315
## 0.8.0
416
> Published 24 June 2025
517

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ repositories {
4949
Add the library to dependencies:
5050
```kotlin
5151
dependencies {
52-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.8.0")
52+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.8.1")
5353
}
5454
```
5555

@@ -59,7 +59,7 @@ kotlin {
5959
sourceSets {
6060
commonMain {
6161
dependencies {
62-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.8.0")
62+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.8.1")
6363
}
6464
}
6565
}
@@ -73,7 +73,7 @@ Add the library to dependencies:
7373
<dependency>
7474
<groupId>org.jetbrains.kotlinx</groupId>
7575
<artifactId>kotlinx-io-core-jvm</artifactId>
76-
<version>0.8.0</version>
76+
<version>0.8.1</version>
7777
</dependency>
7878
```
7979

0 commit comments

Comments
 (0)