From 1323f9ed63bf9076c36f92b8f6a22d749e23437a Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Fri, 4 Oct 2019 22:37:54 +0200 Subject: [PATCH 1/3] feat(myhpi): add InfoBit.content --- hpi/cloud/myhpi/v1test/info_bit.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hpi/cloud/myhpi/v1test/info_bit.proto b/hpi/cloud/myhpi/v1test/info_bit.proto index 1c7d666..e6831f0 100644 --- a/hpi/cloud/myhpi/v1test/info_bit.proto +++ b/hpi/cloud/myhpi/v1test/info_bit.proto @@ -28,6 +28,9 @@ message InfoBit { // Required. The description (HTML). string description = 6; + // HTML-formatted content that can be set in addition to the description. + string content = 10; + // Different ways children are displayed within this info bit. enum ChildDisplay { NONE = 0; From eaf262b104cb08c67835ce78946ee01ed497c445 Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Fri, 4 Oct 2019 22:39:02 +0200 Subject: [PATCH 2/3] fix(myhpi): make InfoBit.description plain text --- hpi/cloud/myhpi/v1test/info_bit.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hpi/cloud/myhpi/v1test/info_bit.proto b/hpi/cloud/myhpi/v1test/info_bit.proto index e6831f0..ded8b22 100644 --- a/hpi/cloud/myhpi/v1test/info_bit.proto +++ b/hpi/cloud/myhpi/v1test/info_bit.proto @@ -25,7 +25,7 @@ message InfoBit { // The cover image. hpi.cloud.common.v1test.Image cover = 5; - // Required. The description (HTML). + // Required. A short description. string description = 6; // HTML-formatted content that can be set in addition to the description. From a5132a5e04e2ea728403580408d3afaa1f78ec24 Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Fri, 4 Oct 2019 22:58:38 +0200 Subject: [PATCH 3/3] chore: prepare release --- .unicornfig.yml | 2 +- CHANGELOG.md | 11 ++++++++++- build.gradle | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.unicornfig.yml b/.unicornfig.yml index f7e00c0..fb93c22 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.8" +version: "0.0.9" githubName: "HPI-de/hpi-cloud-apis" diff --git a/CHANGELOG.md b/CHANGELOG.md index eb97877..efd0fb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [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 + ## [0.0.8] - 2019-10-01 ### BREAKING CHANGES - **course:** support multiple lecturers @@ -80,7 +88,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.8...dev +[Unreleased]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.9...dev +[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 [0.0.6]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.5...0.0.6 diff --git a/build.gradle b/build.gradle index b660af8..6843b62 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ ext { githubReleaseNotes = 'CHANGELOG.md' allLicenses = ["Apache-2.0"] - libraryVersion = "0.0.8" + libraryVersion = "0.0.9" } task sourcesJar(type: Jar, dependsOn: classes) {