From 8ada3f8ecee30d06f9aca4712a50eade889da3ab Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Fri, 4 Oct 2019 22:51:48 +0200 Subject: [PATCH 1/2] feat(myhpi): make Action.icon a binary png --- hpi/cloud/myhpi/v1test/info_bit.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hpi/cloud/myhpi/v1test/info_bit.proto b/hpi/cloud/myhpi/v1test/info_bit.proto index ded8b22..3852fd2 100644 --- a/hpi/cloud/myhpi/v1test/info_bit.proto +++ b/hpi/cloud/myhpi/v1test/info_bit.proto @@ -66,8 +66,8 @@ message Action { // Required. The title. string title = 2; - // The URL pointing to an icon. - string icon = 3; + // A grayscale png-image (approx. 48x48 pixels). May contain transparency. + bytes icon = 3; oneof type { LinkAction link = 4; From e565faebf212a8ed9841999cae9bf26f10642fe4 Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Sat, 5 Oct 2019 10:42:26 +0200 Subject: [PATCH 2/2] chore: prepare release --- .unicornfig.yml | 2 +- CHANGELOG.md | 8 ++++++-- build.gradle | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.unicornfig.yml b/.unicornfig.yml index fb93c22..bd2ae77 100644 --- a/.unicornfig.yml +++ b/.unicornfig.yml @@ -7,5 +7,5 @@ description: "This repository contains the original interface definitions of pub \ definitions can provide a better understanding of HPI Cloud APIs and help you\ \ to utilize them more efficiently. You can also use these definitions with open\ \ source tools to generate client libraries, documentation, and other artifacts." -version: "0.0.9" +version: "0.0.10" githubName: "HPI-de/hpi-cloud-apis" diff --git a/CHANGELOG.md b/CHANGELOG.md index efd0fb4..e204e52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,10 +19,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.0.10] - 2019-10-05 +### BREAKING CHANGES +- **myhpi:** make Action.icon a binary png + ## [0.0.9] - 2019-10-04 ### BREAKING CHANGES - **myhpi:** make InfoBit.description plain text -- **myhpi:** make Action.icon a binary png ### Added - **myhpi:** add InfoBit.content @@ -88,7 +91,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. Initial release with NewsService. -[Unreleased]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.9...dev +[Unreleased]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.10...dev +[0.0.10]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.9...0.0.10 [0.0.9]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.8...0.0.9 [0.0.8]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.7...0.0.8 [0.0.7]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.6...0.0.7 diff --git a/build.gradle b/build.gradle index 6843b62..3a436e5 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ ext { githubReleaseNotes = 'CHANGELOG.md' allLicenses = ["Apache-2.0"] - libraryVersion = "0.0.9" + libraryVersion = "0.0.10" } task sourcesJar(type: Jar, dependsOn: classes) {