3
3
[ ![ Kotlin Alpha] ( https://kotl.in/badges/alpha.svg )] ( https://kotlinlang.org/docs/components-stability.html )
4
4
[ ![ JetBrains incubator project] ( https://jb.gg/badges/incubator.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
5
5
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( http://www.apache.org/licenses/LICENSE-2.0 )
6
- [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-io-core?versionSuffix=0.2.1 )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-io-core/0.2.1 )
6
+ [ ![ Download] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/kotlinx-io-core )] ( https://central.sonatype.com/artifact/org.jetbrains.kotlinx/kotlinx-io-core/ )
7
7
[ ![ Kotlin] ( https://img.shields.io/badge/kotlin-1.9.10-blue.svg?logo=kotlin )] ( http://kotlinlang.org )
8
8
[ ![ TeamCity build] ( https://img.shields.io/teamcity/build/s/KotlinTools_KotlinxIo_BuildAggregated.svg?server=http%3A%2F%2Fteamcity.jetbrains.com )] ( https://teamcity.jetbrains.com/viewType.html?buildTypeId=KotlinTools_KotlinxIo_BuildAggregated&guest=1 )
9
9
[ ![ KDoc link] ( https://img.shields.io/badge/API_reference-KDoc-blue )] ( https://fzhinkin.github.io/kotlinx-io-dokka-docs-preview/ )
@@ -22,7 +22,7 @@ The library also provides interfaces representing data sources and destinations
22
22
In addition to ` Buffer ` , the library provides an immutable sequence of bytes - ` ByteString ` .
23
23
24
24
Also, there's an experimental filesystem support provided by ` kotlinx.io.files ` package.
25
- The package includes ` FileSystem ` interface and its implementation - ` SystemFileSystem ` .
25
+ The package includes ` FileSystem ` interface and its implementation - ` SystemFileSystem ` .
26
26
27
27
` FileSystem ` provides basic operations for working with files and directories.
28
28
@@ -48,7 +48,7 @@ repositories {
48
48
Add the library to dependencies:
49
49
``` kotlin
50
50
dependencies {
51
- implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.2.1 " )
51
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.3.0 " )
52
52
}
53
53
```
54
54
@@ -58,7 +58,7 @@ kotlin {
58
58
sourceSets {
59
59
commonMain {
60
60
dependencies {
61
- implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.2.1 " )
61
+ implementation(" org.jetbrains.kotlinx:kotlinx-io-core:0.3.0 " )
62
62
}
63
63
}
64
64
}
@@ -72,7 +72,7 @@ Add the library to dependencies:
72
72
<dependency >
73
73
<groupId >org.jetbrains.kotlinx</groupId >
74
74
<artifactId >kotlinx-io-core-jvm</artifactId >
75
- <version >0.2.1 </version >
75
+ <version >0.3.0 </version >
76
76
</dependency >
77
77
```
78
78
@@ -95,6 +95,6 @@ kotlinx-io is licensed under the [Apache 2.0 License](LICENSE).
95
95
96
96
Thanks to everyone involved in the project.
97
97
98
- A honorable mention goes to the developers of [ Okio] ( https://square.github.io/okio/ )
98
+ An honorable mention goes to the developers of [ Okio] ( https://square.github.io/okio/ )
99
99
that served as the foundation for ` kotlinx-io ` and to [ Jesse Wilson] ( https://github.com/swankjesse ) ,
100
100
for the help with ` Okio ` adaption, his suggestions, assistance and guidance with ` kotlinx-io ` development.
0 commit comments