diff --git a/README.md b/README.md index 8909868b..0db4a05e 100644 --- a/README.md +++ b/README.md @@ -95,13 +95,13 @@ GraphCompose uses PDFBox under the hood as the rendering backend — the com com.github.DemchaAV GraphCompose - v1.6.1 + v1.6.2 ``` ```kotlin repositories { maven("https://jitpack.io") } -dependencies { implementation("com.github.demchaav:GraphCompose:v1.6.1") } +dependencies { implementation("com.github.demchaav:GraphCompose:v1.6.2") } ``` > **Distribution status** — currently **JitPack**. Maven Central is planned for v1.7 ([tracking issue](https://github.com/DemchaAV/GraphCompose/issues/7)). diff --git a/examples/src/main/java/com/demcha/examples/support/ShowcaseMetadata.java b/examples/src/main/java/com/demcha/examples/support/ShowcaseMetadata.java index c3a6fb13..af4c1c69 100644 --- a/examples/src/main/java/com/demcha/examples/support/ShowcaseMetadata.java +++ b/examples/src/main/java/com/demcha/examples/support/ShowcaseMetadata.java @@ -33,7 +33,7 @@ final class ShowcaseMetadata { // on develop). At release time switch this to the published tag // (e.g. "v1.6.0") so users browsing the deployed site land on the // exact source that produced the artefacts. - private static final String GH_BASE = "https://github.com/DemchaAV/GraphCompose/blob/v1.6.2"; + private static final String GH_BASE = "https://github.com/DemchaAV/GraphCompose/blob/develop"; private static final String EX_BASE = GH_BASE + "/examples/src/main/java/com/demcha/examples"; record Entry(String title, String description, List tags, String codeUrl) {