Skip to content

Commit

Permalink
KyberKotlin v0.3.1-standard
Browse files Browse the repository at this point in the history
Changelog:
* Branchless code where it mattered.
  • Loading branch information
ronhombre committed Jan 17, 2024
1 parent f17bb82 commit 4aca746
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@ Thus, the APACHE LICENSE v2.0 has been chosen.

## Changelog

### v0.3.1-standard

* Branchless code where it mattered.

### v0.3.0-standard

* Convert KyberEncryptionKey, KyberDecryptionKey, KyberEncapsulationKey, KyberDecapsulationKey, and KyberCipherText to HEX, BASE64, and BYTES vice-versa.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "asia.hombre.kyber" //The value after the last '.' is considered the maven name i.e. asia.hombre:kyber:+
version = "0.3.0-standard"
version = "0.3.1-standard"

val projectName = project.group.toString().split(".").last() //Grab maven name
val baseProjectName = projectName.plus("-").plus(project.version)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@

<groupId>asia.hombre</groupId>
<artifactId>kyber</artifactId>
<version>0.3.0-standard</version>
<version>0.3.1-standard</version>
<packaging>jar</packaging>

<scm>
<tag>v0.3.0-standard</tag>
<tag>v0.3.1-standard</tag>
<connection>scm:git:https://github.com/ronhombre/KyberKotlin.git</connection>
<url>https://github.com/ronhombre/KyberKotlin.git</url>
</scm>
Expand Down

0 comments on commit 4aca746

Please sign in to comment.