Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Commit d12d722

Browse files
committed
Merge branch 'release/0.0.9'
2 parents 1501e6e + a5132a5 commit d12d722

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

.unicornfig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ description: "This repository contains the original interface definitions of pub
77
\ definitions can provide a better understanding of HPI Cloud APIs and help you\
88
\ to utilize them more efficiently. You can also use these definitions with open\
99
\ source tools to generate client libraries, documentation, and other artifacts."
10-
version: "0.0.8"
10+
version: "0.0.9"
1111
githubName: "HPI-de/hpi-cloud-apis"

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1919
## [Unreleased]
2020

2121

22+
## [0.0.9] - 2019-10-04
23+
### BREAKING CHANGES
24+
- **myhpi:** make InfoBit.description plain text
25+
- **myhpi:** make Action.icon a binary png
26+
27+
### Added
28+
- **myhpi:** add InfoBit.content
29+
2230
## [0.0.8] - 2019-10-01
2331
### BREAKING CHANGES
2432
- **course:** support multiple lecturers
@@ -80,7 +88,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
8088
Initial release with NewsService.
8189

8290

83-
[Unreleased]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.8...dev
91+
[Unreleased]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.9...dev
92+
[0.0.9]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.8...0.0.9
8493
[0.0.8]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.7...0.0.8
8594
[0.0.7]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.6...0.0.7
8695
[0.0.6]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.5...0.0.6

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ ext {
3535
githubReleaseNotes = 'CHANGELOG.md'
3636
allLicenses = ["Apache-2.0"]
3737

38-
libraryVersion = "0.0.8"
38+
libraryVersion = "0.0.9"
3939
}
4040

4141
task sourcesJar(type: Jar, dependsOn: classes) {

hpi/cloud/myhpi/v1test/info_bit.proto

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ message InfoBit {
2525
// The cover image.
2626
hpi.cloud.common.v1test.Image cover = 5;
2727

28-
// Required. The description (HTML).
28+
// Required. A short description.
2929
string description = 6;
3030

31+
// HTML-formatted content that can be set in addition to the description.
32+
string content = 10;
33+
3134
// Different ways children are displayed within this info bit.
3235
enum ChildDisplay {
3336
NONE = 0;

0 commit comments

Comments
 (0)