Skip to content

Commit 25612ef

Browse files
committed
Prepare for 5.0.0 release
1 parent f1ec1b7 commit 25612ef

File tree

13 files changed

+20
-16
lines changed

13 files changed

+20
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ Typist.
7979
Command code generation has been rewritten to support inferred parameters for methods annotated with `@Bind`.
8080
This project was originally part of commons but has since been moved into Typist since this release.
8181

82+
### Typist Example Plugin
83+
84+
This project provides a minimal example of using Typist in a plugin.
85+
8286
### Scribe
8387

8488
TL;DR - Remove Scribe

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Karus Labs' mono-repository for spigot libraries & tools.
2323

2424
| Chimera Version | Minecraft Version |
2525
|-----------------|-------------------|
26-
| 5.0.0-SNAPSHOT | 1.17.0 |
26+
| 5.0.0 | 1.17.0 |
2727
| 4.9.0-SNAPSHOT | 1.16.4 |
2828
| 4.8.0 | 1.16.3 |
2929
| 4.7.1 | 1.16.1 |
@@ -49,7 +49,7 @@ Karus Labs' mono-repository for spigot libraries & tools.
4949
<dependency>
5050
<groupId>com.karuslabs</groupId>
5151
<artifactId>annotations</artifactId>
52-
<version>5.0.0-SNAPSHOT</version>
52+
<version>5.0.0</version>
5353
</dependency>
5454
```
5555

@@ -62,7 +62,7 @@ Karus Labs' mono-repository for spigot libraries & tools.
6262
<dependency>
6363
<groupId>com.karuslabs</groupId>
6464
<artifactId>commons</artifactId>
65-
<version>5.0.0-SNAPSHOT</version>
65+
<version>5.0.0</version>
6666
</dependency>
6767
```
6868

@@ -75,6 +75,6 @@ Karus Labs' mono-repository for spigot libraries & tools.
7575
<dependency>
7676
<groupId>com.karuslabs</groupId>
7777
<artifactId>typist</artifactId>
78-
<version>5.0.0-SNAPSHOT</version>
78+
<version>5.0.0</version>
7979
</dependency>
8080
```

annotations/dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>chimera</artifactId>
55
<groupId>com.karuslabs</groupId>
6-
<version>5.0.0-SNAPSHOT</version>
6+
<version>5.0.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>annotations</artifactId>

annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.karuslabs</groupId>
66
<artifactId>chimera</artifactId>
7-
<version>5.0.0-SNAPSHOT</version>
7+
<version>5.0.0</version>
88
</parent>
99

1010
<artifactId>annotations</artifactId>

commons/dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>chimera</artifactId>
55
<groupId>com.karuslabs</groupId>
6-
<version>5.0.0-SNAPSHOT</version>
6+
<version>5.0.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>commons</artifactId>

commons/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.karuslabs</groupId>
66
<artifactId>chimera</artifactId>
7-
<version>5.0.0-SNAPSHOT</version>
7+
<version>5.0.0</version>
88
</parent>
99

1010
<artifactId>commons</artifactId>

pom.xml

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

55
<groupId>com.karuslabs</groupId>
66
<artifactId>chimera</artifactId>
7-
<version>5.0.0-SNAPSHOT</version>
7+
<version>5.0.0</version>
88
<packaging>pom</packaging>
99

1010
<name>Chimera</name>

typist-example-plugin/dependency-reduced-pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>chimera</artifactId>
55
<groupId>com.karuslabs</groupId>
6-
<version>5.0.0-SNAPSHOT</version>
6+
<version>5.0.0</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>typist-example-plugin</artifactId>
@@ -66,7 +66,7 @@
6666
<dependency>
6767
<groupId>com.karuslabs</groupId>
6868
<artifactId>typist</artifactId>
69-
<version>5.0.0-SNAPSHOT</version>
69+
<version>5.0.0</version>
7070
<scope>provided</scope>
7171
</dependency>
7272
<dependency>

typist-example-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.karuslabs</groupId>
66
<artifactId>chimera</artifactId>
7-
<version>5.0.0-SNAPSHOT</version>
7+
<version>5.0.0</version>
88
</parent>
99

1010
<artifactId>typist-example-plugin</artifactId>

typist/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.karuslabs</groupId>
66
<artifactId>chimera</artifactId>
7-
<version>5.0.0-SNAPSHOT</version>
7+
<version>5.0.0</version>
88
</parent>
99

1010
<artifactId>typist</artifactId>

0 commit comments

Comments
 (0)