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

Commit

Permalink
Merge branch 'release/0.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Aug 12, 2019
2 parents 59894ae + 2a6928d commit b5d6d9f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .unicornfig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"
version: "0.0.4"
githubName: "HPI-de/hpi-cloud-apis"
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]


## [0.0.3] - 2019-08-12
## [0.0.4] - 2019-08-12
### Added
- add documentation on how to generate Dart code
- **course:** add course definitions
Expand All @@ -30,6 +30,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- shorten GitHub templates
- **news:** shorten proto descriptions

## [0.0.3] - 2019-08-12
### BREAKING CHANGES
- **course, myhpi:** split message definitions into multiple files

## [0.0.2] - 2019-07-05
### Changed
- Updated library `com.google.protobuf:protobuf-java` to version 3.8.0.
Expand All @@ -38,6 +42,7 @@ 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.3...dev
[Unreleased]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.4...dev
[0.0.4]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.3...0.0.4
[0.0.3]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.2...0.0.3
[0.0.2]: https://github.com/HPI-de/hpi-cloud-apis/compare/0.0.1...0.0.2
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ext {
githubReleaseNotes = 'CHANGELOG.md'
allLicenses = ["Apache-2.0"]

libraryVersion = "0.0.3"
libraryVersion = "0.0.4"
}

task sourcesJar(type: Jar, dependsOn: classes) {
Expand Down
4 changes: 4 additions & 0 deletions hpi/cloud/course/v1test/course.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ syntax = "proto3";

package hpi.cloud.course.v1test;

option java_multiple_files = true;
option java_outer_classname = "CourseProto";
option java_package = "de.hpi.cloud.course.v1test";

// A series of courses that cover the same topic and can take place on multiple
// semesters.
message CourseSeries {
Expand Down
4 changes: 4 additions & 0 deletions hpi/cloud/myhpi/v1test/info_bit.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ syntax = "proto3";

package hpi.cloud.myhpi.v1test;

option java_multiple_files = true;
option java_outer_classname = "InfoBitProto";
option java_package = "de.hpi.cloud.myhpi.v1test";

// A bit of information to show in a MyHPI context.
message InfoBit {
// Required, output only. The unique ID of this info bit.
Expand Down

0 comments on commit b5d6d9f

Please sign in to comment.