Skip to content

Commit

Permalink
Release 4.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
qhy040404 committed Jun 27, 2023
1 parent 44544cf commit cce82bb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

v4.2.3

* 修复查看成绩时可能存在的崩溃

---

v4.2.2

* Target API 34
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
id("org.jetbrains.kotlin.android")
}

val baseVersionName = "4.2.2"
val baseVersionName = "4.2.3"
val commitsCount by lazy { "git rev-list --count HEAD".exec().toInt() }

android {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ object Requests {
val request = Request.Builder()
.url(url)
.apply {
if (headers.size != 0) {
headers(headers)
headers.forEach { (name, value) ->
header(name, value)
}
}
.get()
Expand Down Expand Up @@ -136,8 +136,8 @@ object Requests {
val request = Request.Builder()
.url(url)
.apply {
if (headers.size != 0) {
headers(headers)
headers.forEach { (name, value) ->
header(name, value)
}
}
.post(body)
Expand Down

0 comments on commit cce82bb

Please sign in to comment.