Skip to content

Commit

Permalink
Rename file with last release
Browse files Browse the repository at this point in the history
  • Loading branch information
opwvhk committed Sep 30, 2024
1 parent 83f9f85 commit d9b016e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ plugins {

// The first and last supported builds
// The first build MUST be compatible with the platform & version in dependencies/intellijPlatform !
// The last build is one more than the last release (to accommodate the EAP before it exists)
// The last build is one more than the last release (to accommodate the EAP before it is released)
val firstBuild = "232"
val lastBuild = provider {
file("jetbrains.lastBuild.txt").readLines()
file("jetbrains.lastRelease.txt").readLines()
.asSequence()
.map { it.trim() }
.filterNot { it.isEmpty() || it.startsWith("#") }
Expand All @@ -26,7 +26,7 @@ val lastBuild = provider {
}

group = "net.sf.opk"
version = "232.0.0"
version = "232.0.1-SNAPSHOT"

repositories {
mavenLocal()
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions update_until_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ LAST_BUILD=$(curl \
jq -r '.[][0].build' |
cut -d . -f 1 |
sort -r | head -n 1)
echo "# Highest released build number for IntelliJ IDEA Ultimate / Community edition and PyCharm Professional / PyCharm Community edition" >jetbrains.lastBuild.txt
echo "${LAST_BUILD}" >>jetbrains.lastBuild.txt
echo "# Highest released build number for IntelliJ IDEA Ultimate / Community edition and PyCharm Professional / PyCharm Community edition" >jetbrains.lastRelease.txt
echo "${LAST_BUILD}" >>jetbrains.lastRelease.txt
echo "Last released build number for IntelliJ IDEA Ultimate / Community edition and PyCharm Professional / PyCharm Community edition: ${LAST_BUILD}"

0 comments on commit d9b016e

Please sign in to comment.