File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/sh
22
3- VERSION=dev-2023-03
3+ VERSION=dev-2023-04
44FILE_NAME=odin-ubuntu-amd64-$VERSION .zip
55sudo apt-get install -y aria2
66mkdir /tmp/odin
77cd /tmp/odin
88aria2c -c -o $FILE_NAME https://github.com/odin-lang/Odin/releases/download/$VERSION /$FILE_NAME
9- if test -d ubuntu_artifacts; then rm -r ubuntu_artifacts; fi
9+ if test -d ubuntu_artifacts; then sudo rm -rf ubuntu_artifacts; fi
1010unzip -o $FILE_NAME
1111if test -d ubuntu_artifacts; then ODIN_BIN_PATH=$PWD /ubuntu_artifacts/odin; else ODIN_BIN_PATH=$PWD /odin; fi
1212sudo chmod +x $ODIN_BIN_PATH
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import org.jetbrains.kotlin.cli.jvm.K2JVMCompiler
33import org.jetbrains.kotlin.config.KotlinCompilerVersion
44
55plugins {
6- val kotlinVersion = " 1.8.10 "
6+ val kotlinVersion = " 1.8.20 "
77 kotlin(" jvm" ).version(kotlinVersion)
88 kotlin(" plugin.serialization" ).version(kotlinVersion)
99 // kotlin("plugin.spring").version(kotlinVersion)
@@ -31,7 +31,7 @@ dependencies {
3131 // implementation("org.slf4j:slf4j-api:1.7.36")
3232 implementation(" org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4" )
3333 implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0" )
34- implementation(" org.jetbrains.kotlinx:atomicfu:0.20.1 " )
34+ implementation(" org.jetbrains.kotlinx:atomicfu:0.20.2 " )
3535 val ktor_version = " 2.2.4"
3636 implementation(" io.ktor:ktor-server-core:$ktor_version " )
3737 // implementation("io.ktor:ktor-server-netty:$ktor_version")
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import org.jetbrains.kotlin.config.KotlinCompilerVersion
33import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
44
55plugins {
6- val kotlinVersion = " 1.8.10 "
6+ val kotlinVersion = " 1.8.20 "
77 kotlin(" multiplatform" ).version(kotlinVersion)
88 kotlin(" plugin.serialization" ).version(kotlinVersion)
99 id(" com.github.ben-manes.versions" ).version(" 0.46.0" )
You can’t perform that action at this time.
0 commit comments