Skip to content

Commit 5e8e1af

Browse files
committed
revert to 1.3 for notebook support
1 parent f9141d1 commit 5e8e1af

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.gradle.api.tasks.testing.logging.TestLogEvent.*
33

44
plugins {
55
idea
6-
kotlin("jvm") version "1.4-M2" // Keep in sync with README
6+
kotlin("jvm") version "1.3.72" // Keep in sync with README
77
}
88

99
allprojects {
@@ -25,7 +25,7 @@ idea.module {
2525

2626
subprojects {
2727
group = "edu.umontreal"
28-
version = "0.2.8"
28+
version = "0.2.9"
2929

3030
apply(plugin = "org.jetbrains.kotlin.jvm")
3131

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
2727

2828
// Symbolic fuzzing interpreter
29-
testImplementation("org.jetbrains.kotlin:kotlin-scripting-jsr223-embeddable:1.4-M2")
29+
testImplementation("org.jetbrains.kotlin:kotlin-scripting-jsr223-embeddable:1.3.72")
3030
// Graphical libraries
3131
implementation("guru.nidi:graphviz-kotlin:0.17.0")
3232
}

kotlingrad.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
{
22
"properties": {
3-
"kotlingradVersion": "0.2.7"
3+
"kotlingradVersion": "0.2.9"
44
},
55
"link": "https://github.com/breandan/kotlingrad",
66
"repositories": [
7-
"https://jitpack.io",
8-
"https://dl.bintray.com/kotlin/kotlin-eap",
9-
"https://dl.bintray.com/mipt-npm/dev"
7+
"https://jitpack.io"
108
],
119
"dependencies": [
1210
"com.github.breandan:kotlingrad:$kotlingradVersion"

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include("core", "samples")
55
pluginManagement.repositories {
66
mavenCentral()
77
gradlePluginPortal()
8-
maven ("https://dl.bintray.com/kotlin/kotlin-eap")
8+
// maven ("https://dl.bintray.com/kotlin/kotlin-eap")
99
}
1010

1111
//buildscript {

0 commit comments

Comments
 (0)