Skip to content

Commit

Permalink
1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Oct 18, 2023
1 parent 247f744 commit f520d9d
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.PUBLISH_SIGNING_PASSWORD }}
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.PUBLISH_SONATYPE_USER }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.PUBLISH_SONATYPE_PASSWORD }}
- name: Upload jar
uses: actions/upload-artifact@v3
with:
name: attestation-service
path: |
attestation-service/build/libs/*jar
deploy-docs:
needs: build
environment:
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,8 @@ attestation on Android, please re-read the readme!
- fix temporal iOS receipt validation error not being propagated as such

#### 1.4.3
- update android-attestation
- update android-attestation

#### 1.4.4
- update android-attestation
- update gradle conventions
2 changes: 1 addition & 1 deletion android-attestation-root
4 changes: 2 additions & 2 deletions attestation-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "at.asitplus"
version = "1.4.3"
version = "1.4.4"

sourceSets.test {
kotlin {
Expand All @@ -20,7 +20,7 @@ sourceSets.test {
}

dependencies {
api("at.asitplus:android-attestation:1.3.0")
api("at.asitplus:android-attestation:1.4.0")
api(datetime())
implementation("ch.veehait.devicecheck:devicecheck-appattest:0.9.6")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:2.14.2")
Expand Down
1 change: 0 additions & 1 deletion attestation-service/src/test/kotlin/KeyConversionTests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class KeyConversionTests : FreeSpec({
"MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEFT1XwEeF8NftY84GfnqTFBoxHNkdG7wZHcOkLKwT4W6333Jqmga1XkKySq/ApnslBPNZE1Os363SAv8X85ZIrQ==".decodeBase64ToArray()
"it should be parsable" - {
val parsedKey = x509Key.parseToPublicKey()
parsedKey
"and encodable to ANSI X9.62" - {
val ansBytes = (parsedKey as ECPublicKey).toAnsi()
"and decodable" - {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
plugins { id("at.asitplus.gradle.conventions") version "1.9.10+20230911" }
plugins { id("at.asitplus.gradle.conventions") version "1.9.10+20230922" }

group = "at.asitplus"
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
jvm.version=11

0 comments on commit f520d9d

Please sign in to comment.