Skip to content

Commit 6bb6cf7

Browse files
committed
bumped deprecation message numbers since 0.11.0 is already released
1 parent c7d0d01 commit 6bb6cf7

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/util/deprecationMessages.kt

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,35 +7,35 @@ package org.jetbrains.kotlinx.dataframe.util
77
* Level.ERROR -> Remove
88
*/
99

10-
// region WARNING in 0.10.0, ERROR in 0.11.0
10+
// region WARNING in 0.11.0, ERROR in 0.12.0
1111

12-
private const val message_0_11_0 = "Was removed in 0.11.0."
12+
private const val message_0_12_0 = "Was removed in 0.12.0."
1313

14-
internal const val DF_READ_DEPRECATION_MESSAGE = "Replaced with `unfold` operation. $message_0_11_0"
14+
internal const val DF_READ_DEPRECATION_MESSAGE = "Replaced with `unfold` operation. $message_0_12_0"
1515
internal const val DF_READ_REPLACE_MESSAGE = "this.unfold(*columns)"
1616

17-
internal const val ITERABLE_COLUMNS_DEPRECATION_MESSAGE = "Replaced with `toColumnSet()` operation. $message_0_11_0"
17+
internal const val ITERABLE_COLUMNS_DEPRECATION_MESSAGE = "Replaced with `toColumnSet()` operation. $message_0_12_0"
1818

1919
// endregion
2020

21-
// region WARNING in 0.11.0, ERROR in 0.12.0
21+
// region WARNING in 0.12.0, ERROR in 0.13.0
2222

23-
private const val message_0_12_0 = "Will be removed in 0.12.0."
23+
private const val message_0_13_0 = "Will be removed in 0.13.0."
2424

25-
internal const val DIFF_DEPRECATION_MESSAGE = "Replaced to explicitly indicate nullable return value; added a new non-null overload. $message_0_12_0"
25+
internal const val DIFF_DEPRECATION_MESSAGE = "Replaced to explicitly indicate nullable return value; added a new non-null overload. $message_0_13_0"
2626
internal const val DIFF_REPLACE_MESSAGE = "this.diffOrNull(expression)"
2727
internal const val DIFF_OR_NULL_IMPORT = "org.jetbrains.kotlinx.dataframe.api.diffOrNull"
2828

29-
internal const val UPDATE_AS_NULLABLE_MESSAGE = "This function is useless unless in combination with `withValue(null)`, but then you can just use `with { null }`. $message_0_12_0"
29+
internal const val UPDATE_AS_NULLABLE_MESSAGE = "This function is useless unless in combination with `withValue(null)`, but then you can just use `with { null }`. $message_0_13_0"
3030
internal const val UPDATE_AS_NULLABLE_REPLACE = "this as Update<T, C?>"
3131

32-
internal const val UPDATE_WITH_VALUE = "Replaced in favor of `with { value }`. $message_0_12_0"
32+
internal const val UPDATE_WITH_VALUE = "Replaced in favor of `with { value }`. $message_0_13_0"
3333
internal const val UPDATE_WITH_VALUE_REPLACE = "this.with { value }"
3434

3535
// endregion
3636

37-
// region WARNING in 0.12.0, ERROR in 0.13.0
37+
// region WARNING in 0.13.0, ERROR in 0.14.0
3838

39-
private const val message_0_13_0 = "Will be removed in 0.13.0."
39+
private const val message_0_14_0 = "Will be removed in 0.14.0."
4040

4141
// endregion

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/util/deprecationMessages.kt

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,35 +7,35 @@ package org.jetbrains.kotlinx.dataframe.util
77
* Level.ERROR -> Remove
88
*/
99

10-
// region WARNING in 0.10.0, ERROR in 0.11.0
10+
// region WARNING in 0.11.0, ERROR in 0.12.0
1111

12-
private const val message_0_11_0 = "Was removed in 0.11.0."
12+
private const val message_0_12_0 = "Was removed in 0.12.0."
1313

14-
internal const val DF_READ_DEPRECATION_MESSAGE = "Replaced with `unfold` operation. $message_0_11_0"
14+
internal const val DF_READ_DEPRECATION_MESSAGE = "Replaced with `unfold` operation. $message_0_12_0"
1515
internal const val DF_READ_REPLACE_MESSAGE = "this.unfold(*columns)"
1616

17-
internal const val ITERABLE_COLUMNS_DEPRECATION_MESSAGE = "Replaced with `toColumnSet()` operation. $message_0_11_0"
17+
internal const val ITERABLE_COLUMNS_DEPRECATION_MESSAGE = "Replaced with `toColumnSet()` operation. $message_0_12_0"
1818

1919
// endregion
2020

21-
// region WARNING in 0.11.0, ERROR in 0.12.0
21+
// region WARNING in 0.12.0, ERROR in 0.13.0
2222

23-
private const val message_0_12_0 = "Will be removed in 0.12.0."
23+
private const val message_0_13_0 = "Will be removed in 0.13.0."
2424

25-
internal const val DIFF_DEPRECATION_MESSAGE = "Replaced to explicitly indicate nullable return value; added a new non-null overload. $message_0_12_0"
25+
internal const val DIFF_DEPRECATION_MESSAGE = "Replaced to explicitly indicate nullable return value; added a new non-null overload. $message_0_13_0"
2626
internal const val DIFF_REPLACE_MESSAGE = "this.diffOrNull(expression)"
2727
internal const val DIFF_OR_NULL_IMPORT = "org.jetbrains.kotlinx.dataframe.api.diffOrNull"
2828

29-
internal const val UPDATE_AS_NULLABLE_MESSAGE = "This function is useless unless in combination with `withValue(null)`, but then you can just use `with { null }`. $message_0_12_0"
29+
internal const val UPDATE_AS_NULLABLE_MESSAGE = "This function is useless unless in combination with `withValue(null)`, but then you can just use `with { null }`. $message_0_13_0"
3030
internal const val UPDATE_AS_NULLABLE_REPLACE = "this as Update<T, C?>"
3131

32-
internal const val UPDATE_WITH_VALUE = "Replaced in favor of `with { value }`. $message_0_12_0"
32+
internal const val UPDATE_WITH_VALUE = "Replaced in favor of `with { value }`. $message_0_13_0"
3333
internal const val UPDATE_WITH_VALUE_REPLACE = "this.with { value }"
3434

3535
// endregion
3636

37-
// region WARNING in 0.12.0, ERROR in 0.13.0
37+
// region WARNING in 0.13.0, ERROR in 0.14.0
3838

39-
private const val message_0_13_0 = "Will be removed in 0.13.0."
39+
private const val message_0_14_0 = "Will be removed in 0.14.0."
4040

4141
// endregion

0 commit comments

Comments
 (0)