Skip to content

Commit

Permalink
Release 2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Sep 4, 2023
1 parent ae6152c commit 7112eb5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Expand Up @@ -23,7 +23,7 @@ plugins {
application
}

version = "2.9.0"
version = "2.9.1"

val javaVersion = JavaVersion.VERSION_11

Expand Down
2 changes: 1 addition & 1 deletion src/docs/asciidoc/_changelog.adoc
Expand Up @@ -6,7 +6,7 @@ ifdef::sectnums[]
endif::[]
:sectnums!:

== 2.9.0
== 2.9.1

* Unsorted memory optimizations

Expand Down
Expand Up @@ -23,13 +23,13 @@ internal class CacheRevisionSerializer(val stringInterner: (String) -> String) :
val objectId: ObjectId? = value.gitCommitId
out.writeBoolean(objectId != null)
if (objectId != null) ObjectIdSerializer.instance.serialize(out, objectId)
out.writeInt(value.getRenames().size)
for (en: Map.Entry<String, String> in value.getRenames().entries) {
out.writeInt(value.renames.size)
for (en: Map.Entry<String, String> in value.renames.entries) {
STRING.serialize(out, en.key)
STRING.serialize(out, en.value)
}
out.writeInt(value.getFileChange().size)
for (en: Map.Entry<String, CacheChange> in value.getFileChange().entries) {
out.writeInt(value.fileChange.size)
for (en: Map.Entry<String, CacheChange> in value.fileChange.entries) {
STRING.serialize(out, en.key)
val oldFile: ObjectId? = en.value.oldFile
out.writeBoolean(oldFile != null)
Expand Down

0 comments on commit 7112eb5

Please sign in to comment.