Skip to content

Commit 47bd3bb

Browse files
committed
Release v1.6.5
1 parent f868499 commit 47bd3bb

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All notable changes to GraphCompose are documented here. Versions
44
follow semantic versioning; release dates are ISO 8601.
55

6-
## v1.6.5 — Planned
6+
## v1.6.5 — 2026-05-30
77

88
### Templates v2
99

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ GraphCompose uses PDFBox under the hood as the rendering backend — the com
9595
<dependency>
9696
<groupId>com.github.DemchaAV</groupId>
9797
<artifactId>GraphCompose</artifactId>
98-
<version>v1.6.4</version>
98+
<version>v1.6.5</version>
9999
</dependency>
100100
```
101101

102102
```kotlin
103103
repositories { maven("https://jitpack.io") }
104-
dependencies { implementation("com.github.demchaav:GraphCompose:v1.6.4") }
104+
dependencies { implementation("com.github.demchaav:GraphCompose:v1.6.5") }
105105
```
106106

107107
> **Distribution status** &mdash; currently **JitPack**. Maven Central is planned for v1.7 ([tracking issue](https://github.com/DemchaAV/GraphCompose/issues/7)).

aggregator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.demchaav</groupId>
88
<artifactId>graphcompose-build</artifactId>
9-
<version>1.6.4</version>
9+
<version>1.6.5</version>
1010
<packaging>pom</packaging>
1111

1212
<name>GraphCompose Build Aggregator</name>

benchmarks/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.demchaav</groupId>
99
<artifactId>graphcompose-build</artifactId>
10-
<version>1.6.4</version>
10+
<version>1.6.5</version>
1111
<relativePath>../aggregator/pom.xml</relativePath>
1212
</parent>
1313

docs/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
"applicationSubCategory": "Library",
5858
"operatingSystem": "Cross-platform (JVM 21+)",
5959
"programmingLanguage": "Java",
60-
"softwareVersion": "1.6.4",
60+
"softwareVersion": "1.6.5",
6161
"url": "https://demchaav.github.io/GraphCompose/",
62-
"downloadUrl": "https://jitpack.io/#DemchaAV/GraphCompose/v1.6.4",
62+
"downloadUrl": "https://jitpack.io/#DemchaAV/GraphCompose/v1.6.5",
6363
"image": "https://demchaav.github.io/GraphCompose/assets/logo/graphcompose-logo.png",
6464
"license": "https://github.com/DemchaAV/GraphCompose/blob/main/LICENSE",
6565
"author": {
@@ -168,7 +168,7 @@
168168
<main id="top">
169169
<section class="hero section-shell" aria-labelledby="hero-title">
170170
<div class="hero-copy">
171-
<p class="eyebrow">Java &middot; v1.6.4 &middot; MIT</p>
171+
<p class="eyebrow">Java &middot; v1.6.5 &middot; MIT</p>
172172
<h1 id="hero-title">Java PDF layout engine for structured business documents.</h1>
173173
<p class="hero-lead">Describe documents. Render polished PDFs. A semantic layout engine for Java services that need <b>structured, paginated, theme-driven</b> output &mdash; CVs, invoices, proposals, reports.</p>
174174
<p class="hero-text">No drawing API. No pixel arithmetic. You compose <code>ParagraphNode</code>, <code>TableNode</code>, <code>SectionNode</code>; GraphCompose handles measurement, pagination, fonts, and PDFBox rendering.</p>
@@ -238,7 +238,7 @@ <h4>Maven</h4>
238238
&lt;dependency&gt;
239239
&lt;groupId&gt;com.github.DemchaAV&lt;/groupId&gt;
240240
&lt;artifactId&gt;GraphCompose&lt;/artifactId&gt;
241-
&lt;version&gt;v1.6.4&lt;/version&gt;
241+
&lt;version&gt;v1.6.5&lt;/version&gt;
242242
&lt;/dependency&gt;</code></pre>
243243
</div>
244244
<div class="install-block">
@@ -249,7 +249,7 @@ <h4>Gradle</h4>
249249

250250
dependencies {
251251
implementation(
252-
'com.github.DemchaAV:GraphCompose:v1.6.4'
252+
'com.github.DemchaAV:GraphCompose:v1.6.5'
253253
)
254254
}</code></pre>
255255
</div>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.demchaav</groupId>
99
<artifactId>graphcompose-build</artifactId>
10-
<version>1.6.4</version>
10+
<version>1.6.5</version>
1111
<relativePath>../aggregator/pom.xml</relativePath>
1212
</parent>
1313

examples/src/main/java/com/demcha/examples/support/ShowcaseMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ final class ShowcaseMetadata {
3333
// on develop). At release time switch this to the published tag
3434
// (e.g. "v1.6.0") so users browsing the deployed site land on the
3535
// exact source that produced the artefacts.
36-
private static final String GH_BASE = "https://github.com/DemchaAV/GraphCompose/blob/develop";
36+
private static final String GH_BASE = "https://github.com/DemchaAV/GraphCompose/blob/v1.6.5";
3737
private static final String EX_BASE = GH_BASE + "/examples/src/main/java/com/demcha/examples";
3838

3939
record Entry(String title, String description, List<String> tags, String codeUrl) {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.demchaav</groupId>
88
<artifactId>graphcompose</artifactId>
9-
<version>1.6.4</version>
9+
<version>1.6.5</version>
1010

1111
<name>GraphCompose</name>
1212
<description>A declarative layout engine for programmatic document generation, implemented primarily in Java.</description>

0 commit comments

Comments
 (0)