Skip to content

Commit

Permalink
Release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MrIvanPlays committed Nov 28, 2022
1 parent 22cb327 commit d18fd48
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

This file summarises changes between major versions.

## Version 3.0.1
This version features:
- Updated dependencies
- Added CommentPlaceholderRegistry

### `CommentPlaceholderRegistry`
With this, you can register placeholders to be replaced in comments by AnnotationConfig whenever it
creates a new config file.

Usage:
```java
CommentPlaceholderRegistry.INSTANCE.registerPlaceholder("%foo%", "epic replacement");
```

## Version 3.0.0
This version is all focused on serialization.

Expand Down Expand Up @@ -309,4 +323,4 @@ Here are the changes that don't need too much attention, but are still important
existing config.
- Fixed a special case bug where `@Key` annotations aren't respected for fields annotated
with `@ConfigObject`.
- Handle fields which aren't annotated at all.
- Handle fields which aren't annotated at all.
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>annotationconfig-parent</artifactId>
<groupId>com.mrivanplays</groupId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.mrivanplays</groupId>
<artifactId>annotationconfig-parent</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
<modules>
<module>core</module>
<module>toml</module>
Expand Down
2 changes: 1 addition & 1 deletion toml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>annotationconfig-parent</artifactId>
<groupId>com.mrivanplays</groupId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion yaml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>annotationconfig-parent</artifactId>
<groupId>com.mrivanplays</groupId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit d18fd48

Please sign in to comment.