Skip to content

Commit

Permalink
Update version number and add new field to CommodityMessage DTO
Browse files Browse the repository at this point in the history
The project's version number has been updated from '1.0.0-SNAPSHOT' to '1.0.1-SNAPSHOT'. Also, a new property "stationType" was added to the CommodityMessage Data Transfer Object. This new field will provide additional information about the type of station in the CommodityMessage.
  • Loading branch information
pveeckhout committed Mar 19, 2024
1 parent 380685a commit 46fe399
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'io.edpn.backend'
version = '1.0.0-SNAPSHOT'
version = '1.0.1-SNAPSHOT'
compileJava.options.encoding = 'UTF-8'

java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public LocalDateTime messageTimeStamp() {
public record Payload(
@JsonProperty("systemName") String systemName,
@JsonProperty("stationName") String stationName,
@JsonProperty("stationType") String stationType,
@JsonProperty("marketId") long marketId,
@JsonProperty("horizons") boolean horizons,
@JsonProperty("odyssey") boolean odyssey,
Expand Down

0 comments on commit 46fe399

Please sign in to comment.