Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.4.4 - Snapshot
* Updated some dependencies
* Removed debug logs

## v0.4.3 - Snapshot
* Updated kotlin 1.7.20
* Updated junit 5.9.1
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id 'org.jetbrains.dokka' version '1.7.20'
}

def projectVersion = (System.getenv("VERSION") ?: '0.4.3-SNAPSHOT').replaceFirst("v", "").replace('/', '')
def projectVersion = (System.getenv("VERSION") ?: '0.4.4-SNAPSHOT').replaceFirst("v", "").replace('/', '')

group 'xyz.theprogramsrc'
version projectVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ class GitHubUpdateChecker(val logger: ILogger, val repo: String, val currentVers
}, System.currentTimeMillis())
requestedData[id] = cached
}
println(cached.first.toString() + " - $id")
return cached.first
}

Expand Down