Skip to content

Commit

Permalink
Update version and add carrierDockingAccess to DTO
Browse files Browse the repository at this point in the history
Version number updated to '1.0.2-SNAPSHOT' in the build.gradle. In addition, 'carrierDockingAccess' field has been added to the CommodityMessage Data Transfer Object for more comprehensive data representation.
  • Loading branch information
pveeckhout committed Mar 24, 2024
1 parent 46fe399 commit 6fc644f
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.1-SNAPSHOT'
version = '1.0.2-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("carrierDockingAccess") String carrierDockingAccess,
@JsonProperty("stationType") String stationType,
@JsonProperty("marketId") long marketId,
@JsonProperty("horizons") boolean horizons,
Expand Down

0 comments on commit 6fc644f

Please sign in to comment.