Skip to content

Commit

Permalink
Prepare for 5.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Pante committed Jul 4, 2021
1 parent f1ec1b7 commit 25612ef
Show file tree
Hide file tree
Showing 13 changed files with 20 additions and 16 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ Typist.
Command code generation has been rewritten to support inferred parameters for methods annotated with `@Bind`.
This project was originally part of commons but has since been moved into Typist since this release.

### Typist Example Plugin

This project provides a minimal example of using Typist in a plugin.

### Scribe

TL;DR - Remove Scribe
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Karus Labs' mono-repository for spigot libraries & tools.

| Chimera Version | Minecraft Version |
|-----------------|-------------------|
| 5.0.0-SNAPSHOT | 1.17.0 |
| 5.0.0 | 1.17.0 |
| 4.9.0-SNAPSHOT | 1.16.4 |
| 4.8.0 | 1.16.3 |
| 4.7.1 | 1.16.1 |
Expand All @@ -49,7 +49,7 @@ Karus Labs' mono-repository for spigot libraries & tools.
<dependency>
<groupId>com.karuslabs</groupId>
<artifactId>annotations</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</dependency>
```

Expand All @@ -62,7 +62,7 @@ Karus Labs' mono-repository for spigot libraries & tools.
<dependency>
<groupId>com.karuslabs</groupId>
<artifactId>commons</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</dependency>
```

Expand All @@ -75,6 +75,6 @@ Karus Labs' mono-repository for spigot libraries & tools.
<dependency>
<groupId>com.karuslabs</groupId>
<artifactId>typist</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</dependency>
```
2 changes: 1 addition & 1 deletion annotations/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>chimera</artifactId>
<groupId>com.karuslabs</groupId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>annotations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.karuslabs</groupId>
<artifactId>chimera</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>annotations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion commons/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>chimera</artifactId>
<groupId>com.karuslabs</groupId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>commons</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.karuslabs</groupId>
<artifactId>chimera</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>commons</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.karuslabs</groupId>
<artifactId>chimera</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
<packaging>pom</packaging>

<name>Chimera</name>
Expand Down
4 changes: 2 additions & 2 deletions typist-example-plugin/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>chimera</artifactId>
<groupId>com.karuslabs</groupId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>typist-example-plugin</artifactId>
Expand Down Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>com.karuslabs</groupId>
<artifactId>typist</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion typist-example-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.karuslabs</groupId>
<artifactId>chimera</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>typist-example-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion typist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.karuslabs</groupId>
<artifactId>chimera</artifactId>
<version>5.0.0-SNAPSHOT</version>
<version>5.0.0</version>
</parent>

<artifactId>typist</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

@Static interface Constants<T> {

static final String VERSION = "5.0.0-SNAPSHOT";
static final String VERSION = "5.0.0";
static final String SOURCE = "source";
static final String REQUIREMENT = "REQUIREMENT";
static final String NULL = "null";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void emit(Source source, String pack) {
import org.bukkit.command.CommandSender;
/**
* This file was generated at %s using Chimera %s
* This file was generated at %s using Typist %s
*/
""".formatted(LocalDateTime.now(), VERSION));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class HeaderTest {
import org.bukkit.command.CommandSender;
/**
* This file was generated at %s using Chimera %s
* This file was generated at %s using Typist %s
*/
""".formatted(TIME, VERSION);

Expand Down

0 comments on commit 25612ef

Please sign in to comment.