Skip to content

Commit cc49283

Browse files
committed
0.2.2 -> 0.3.0
1 parent 127c2da commit cc49283

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CHANGELOG
2-
## 0.2.2
2+
## 0.3.0
33
> Published XX Sep 2023
44
55
### Features

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repositories {
4848
Add the library to dependencies:
4949
```kotlin
5050
dependencies {
51-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.2.2")
51+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.0")
5252
}
5353
```
5454

@@ -58,7 +58,7 @@ kotlin {
5858
sourceSets {
5959
commonMain {
6060
dependencies {
61-
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.2.2")
61+
implementation("org.jetbrains.kotlinx:kotlinx-io-core:0.3.0")
6262
}
6363
}
6464
}
@@ -72,7 +72,7 @@ Add the library to dependencies:
7272
<dependency>
7373
<groupId>org.jetbrains.kotlinx</groupId>
7474
<artifactId>kotlinx-io-core-jvm</artifactId>
75-
<version>0.2.2</version>
75+
<version>0.3.0</version>
7676
</dependency>
7777
```
7878

core/common/src/files/Paths.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public fun Path(base: Path, vararg parts: String): Path {
9999
/**
100100
* Returns [RawSource] for the given file or throws if path is not a file or does not exist
101101
*
102-
* Use of this method is deprecated with warning since kotlinx-io 0.2.2. The method will be removed in 0.3.0.
102+
* Use of this method is deprecated with warning since kotlinx-io 0.3.0. The method will be removed in 0.4.0.
103103
*/
104104
@Deprecated(
105105
message = "Use FileSystem.source instead",
@@ -116,7 +116,7 @@ public fun Path.source(): Source = SystemFileSystem.source(this).buffered()
116116
* Returns [RawSink] for the given path, creates file if it doesn't exist, throws if it's a directory,
117117
* overwrites contents.
118118
*
119-
* Use of this method is deprecated with warning since kotlinx-io 0.2.2. The method will be removed in 0.3.0.
119+
* Use of this method is deprecated with warning since kotlinx-io 0.3.0. The method will be removed in 0.4.0.
120120
*/
121121
@Deprecated(
122122
message = "Use FileSystem.sink instead",

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
group=org.jetbrains.kotlinx
7-
version=0.2.3-SNAPSHOT
7+
version=0.3.1-SNAPSHOT
88
kotlin.code.style=official
99
org.gradle.jvmargs=-Xmx4G
1010
nativeBenchmarksEnabled=false

0 commit comments

Comments
 (0)