Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Updated dependencies and minimum Java version (11).
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Brown committed Jul 22, 2023
1 parent 3b4ef14 commit a5d8291
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ repositories {
}

dependencies {
api 'com.structurizr:structurizr-core:1.24.1'
api 'com.structurizr:structurizr-core:1.25.0'

testImplementation 'com.structurizr:structurizr-client:1.24.1'
testImplementation 'com.structurizr:structurizr-client:1.25.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
}

compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'

sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = 11
targetCompatibility = 11

description = 'Export Structurizr models and views to external formats'
group = 'com.structurizr'
version = '1.15.0'
version = '1.16.0'

test {
useJUnitPlatform()
Expand Down
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.16.0 (25th July 2023)

- Updated dependencies and minimum Java version (11).

## 1.15.0 (21st June 2023)

- C4PlantUMLExporter: Enables `c4plantuml.elementProperties` and `c4plantuml.relationshipProperties` to be defined on the view set or individual views.
Expand Down

0 comments on commit a5d8291

Please sign in to comment.