Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ GraphCompose uses PDFBox under the hood as the rendering backend — the com
<dependency>
<groupId>com.github.DemchaAV</groupId>
<artifactId>GraphCompose</artifactId>
<version>v1.6.1</version>
<version>v1.6.2</version>
</dependency>
```

```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** &mdash; currently **JitPack**. Maven Central is planned for v1.7 ([tracking issue](https://github.com/DemchaAV/GraphCompose/issues/7)).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> tags, String codeUrl) {
Expand Down