Skip to content

Commit

Permalink
Change the version
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderTvis committed Nov 22, 2021
1 parent fba74e0 commit 5d27d2c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
9 changes: 5 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
}

group = "space.kscience"
version = "0.3.0-dev-3"
version = "0.3.0-dev-4"

repositories {
mavenCentral()
Expand All @@ -31,7 +31,7 @@ kotlin {

val nativeTargets = setOf(linuxX64(), mingwX64())

val downloadLinks = when(HostManager.hostOs()) {
val downloadLinks = when (HostManager.hostOs()) {
"linux" -> DownloadLinks(
gsl = "https://anaconda.org/conda-forge/gsl/2.7/download/linux-64/gsl-2.7-he838d99_0.tar.bz2",
)
Expand Down Expand Up @@ -171,14 +171,15 @@ readme {
}

ksciencePublish {
github("https://github.com/mipt-npm/kmath-gsl")
space()
github(rootProject.name)
space(release = true)
}

apiValidation.nonPublicMarkers.add("space.kscience.kmath.misc.UnstableKMathAPI")

afterEvaluate {
tasks.withType<DokkaTask> {
println(dokkaSourceSets.toList())
dokkaSourceSets.all {
val readmeFile = projectDir.resolve("README.md")
if (readmeFile.exists()) includes.from(readmeFile)
Expand Down
11 changes: 11 additions & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
`kotlin-dsl`
}

repositories.mavenCentral()

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "11"
}
1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("VERSION_CATALOGS")

pluginManagement.repositories {
Expand Down

0 comments on commit 5d27d2c

Please sign in to comment.