We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa4f3ce commit 44d3adcCopy full SHA for 44d3adc
build.gradle.kts
@@ -1,13 +1,5 @@
1
group = "org.processing"
2
-
3
-// Grab the latest version from the GitHub API
4
-val apiUrl = "https://api.github.com/repos/processing/processing4/releases"
5
-val response = java.net.URL(apiUrl).readText()
6
-val tagName = response.substringAfter("\"tag_name\":\"").substringBefore("\"")
7
-val currentVersion = tagName.split("-").last()
8
-version = currentVersion.split(".").let { parts ->
9
- "${parts[0]}.${parts[1]}.${parts[2].toInt() + 1}"
10
-}
+version = "4.3.3"
11
12
plugins {
13
kotlin("jvm") version libs.versions.kotlin apply false
0 commit comments