Skip to content

Commit dc5308a

Browse files
authored
Merge pull request #199 from Kotlin/develop
patch release 0.2.3
2 parents 2874672 + 79dedd1 commit dc5308a

File tree

213 files changed

+11597
-2452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+11597
-2452
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ CTestTestfile.cmake
4747
_deps
4848

4949
### Kotlin template
50+
.kotlin
51+
5052
# Compiled class file
5153
*.class
5254

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ repositories {
2828
}
2929
3030
dependencies {
31-
implementation "org.jetbrains.kotlinx:multik-core:0.2.2"
32-
implementation "org.jetbrains.kotlinx:multik-default:0.2.2"
31+
implementation "org.jetbrains.kotlinx:multik-core:0.2.3"
32+
implementation "org.jetbrains.kotlinx:multik-default:0.2.3"
3333
}
3434
```
3535

@@ -40,8 +40,8 @@ repositories {
4040
}
4141

4242
dependencies {
43-
implementation("org.jetbrains.kotlinx:multik-core:0.2.2")
44-
implementation("org.jetbrains.kotlinx:multik-default:0.2.2")
43+
implementation("org.jetbrains.kotlinx:multik-core:0.2.3")
44+
implementation("org.jetbrains.kotlinx:multik-default:0.2.3")
4545
}
4646
```
4747

@@ -52,7 +52,7 @@ kotlin {
5252
sourceSets {
5353
val commonMain by getting {
5454
dependencies {
55-
implementation("org.jetbrains.kotlinx:multik-core:0.2.2")
55+
implementation("org.jetbrains.kotlinx:multik-core:0.2.3")
5656
}
5757
}
5858
}
@@ -66,7 +66,7 @@ kotlin {
6666
sourceSets {
6767
val jvmName by getting {
6868
dependencies {
69-
implementation("org.jetbrains.kotlinx:multik-core-jvm:0.2.2")
69+
implementation("org.jetbrains.kotlinx:multik-core-jvm:0.2.3")
7070
}
7171
}
7272
}
@@ -259,8 +259,8 @@ c.sorted() // sort elements
259259
a[2] // select the element at the 2 index
260260
b[1, 2] // select the element at row 1 column 2
261261
b[1] // select row 1
262-
b[0..2, 1] // select elements at rows 0 and 1 in column 1
263-
b[0..1..1] // select all elements at row 0
262+
b[0..1, 1] // select elements at rows 0 to 1 in column 1
263+
b[0, 0..2..1] // select elements at row 0 in columns 0 to 2 with step 1
264264

265265
for (el in b) {
266266
print("$el, ") // 1.5, 2.1, 3.0, 4.0, 5.0, 6.0,

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
/*
2-
* Copyright 2020-2022 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3-
*/
41
import java.time.Duration
52

63
buildscript {
@@ -28,19 +25,22 @@ allprojects {
2825

2926
group = "org.jetbrains.kotlinx"
3027
version = multik_version
31-
3228
}
3329

3430
configure(subprojects.filter { it.name !in unpublished }) {
3531
apply("$rootDir/gradle/publish.gradle")
3632
}
3733

34+
tasks.withType<org.jetbrains.kotlin.gradle.targets.js.npm.tasks.KotlinNpmInstallTask>().configureEach {
35+
args.add("--ignore-engines")
36+
}
37+
3838
val sonatypeUser: String = System.getenv("SONATYPE_USER") ?: ""
3939
val sonatypePassword: String = System.getenv("SONATYPE_PASSWORD") ?: ""
4040

4141
nexusPublishing {
4242
packageGroup.set(project.group.toString())
43-
repositories {
43+
this.repositories {
4444
sonatype {
4545
username.set(sonatypeUser)
4646
password.set(sonatypePassword)

docs/c.list

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE categories
3+
SYSTEM "https://resources.jetbrains.com/writerside/1.0/categories.dtd">
4+
<categories>
5+
<category id="ext" name="External resources" order="1"/>
6+
<category id="get-start" name="Getting Started" order="2"/>
7+
<category id="user-guide" name="User Guide" order="3"/>
8+
<category id="api-docs" name="API Documentation" order="4"/>
9+
</categories>

docs/cfg/buildprofiles.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<buildprofiles xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/build-profiles.xsd"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
5+
<variables>
6+
<header-logo>kotlin_logo.svg</header-logo>
7+
<product-web-url>https://kotlin.github.io/multik/welcome.html</product-web-url>
8+
<enable-browser-edits>true</enable-browser-edits>
9+
<browser-edits-url>https://github.com/Kotlin/multik/edit/develop/docs/</browser-edits-url>
10+
<auto-convert-headings-to-chapters>true</auto-convert-headings-to-chapters>
11+
12+
<web-root>https://kotlin.github.io/multik/</web-root>
13+
<feedback-widget>false</feedback-widget>
14+
<webmaster>[email protected]</webmaster>
15+
<search-scopes-provider>https://www.jetbrains.com/search/json/</search-scopes-provider>
16+
<generate-sitemap-url-prefix>https://kotlin.github.io/multik/</generate-sitemap-url-prefix>
17+
18+
<custom-favicons>https://kotlinlang.org/assets/images/favicon.svg?v2</custom-favicons>
19+
<generate-canonicals>true</generate-canonicals>
20+
</variables>
21+
<build-profile instance="mk">
22+
<variables>
23+
<noindex-content>false</noindex-content>
24+
</variables>
25+
</build-profile>
26+
<footer>
27+
<social type="blog" href="https://blog.jetbrains.com/kotlin/category/data-science/"/>
28+
<social type="twitter" href="https://twitter.com/KotlinForData"/>
29+
<social type="youtube" href="https://www.youtube.com/@Kotlin"/>
30+
<link href="https://kotlinlang.slack.com/archives/C4W52CFEZ">Slack Community</link>
31+
<link href="https://github.com/Kotlin/multik">GitHub</link>
32+
<link href="https://github.com/jetbrains#code-of-conduct">Code of Conduct</link>
33+
<copyright>2000–2024 JetBrains s.r.o.</copyright>
34+
</footer>
35+
36+
</buildprofiles>
Lines changed: 73 additions & 0 deletions
Loading

docs/images/kotlin_logo.svg

Lines changed: 10 additions & 0 deletions
Loading
110 KB
Loading
106 KB
Loading
17.5 KB
Loading

0 commit comments

Comments
 (0)