Skip to content

Commit bfbda2f

Browse files
committed
Update version to 4.0.0
This update contains several new features: * Support for Java records * Support for File, Path, URL, URI, Instant * New project structure that makes it easier to add support for additional file types ... and some breaking changes: * The code for saving and loading YAML files was moved from the configlib-core to the configlib-yaml module: * The Configurations class has been renamed to YamlConfigurations and its methods lost their -YamlConfiguration affix. * FieldFormatter has been renamed to NameFormatter
1 parent d1acb87 commit bfbda2f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ replace `configlib-yaml` with `configlib-paper`
657657
<dependency>
658658
<groupId>de.exlll</groupId>
659659
<artifactId>configlib-yaml</artifactId>
660-
<version>3.1.0</version>
660+
<version>4.0.0</version>
661661
</dependency>
662662
```
663663

@@ -666,13 +666,13 @@ replace `configlib-yaml` with `configlib-paper`
666666
```groovy
667667
repositories { maven { url 'https://maven.pkg.github.com/Exlll/ConfigLib' } }
668668
669-
dependencies { implementation 'de.exlll:configlib-yaml:3.1.0' }
669+
dependencies { implementation 'de.exlll:configlib-yaml:4.0.0' }
670670
```
671671

672672
```kotlin
673673
repositories { maven { url = uri("https://maven.pkg.github.com/Exlll/ConfigLib") } }
674674
675-
dependencies { implementation("de.exlll:configlib-yaml:3.1.0") }
675+
dependencies { implementation("de.exlll:configlib-yaml:4.0.0") }
676676
```
677677

678678
## Future work

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
allprojects {
22
group = "de.exlll"
3-
version = "3.1.0"
3+
version = "4.0.0"
44
}

configlib-paper/src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ConfigLib
2-
version: 3.1.0
2+
version: 4.0.0
33
website: https://github.com/Exlll/ConfigLib
44
description: A library for working with YAML configurations.
55
author: Exlll

configlib-velocity/src/main/java/de/exlll/configlib/ConfigLib.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
@Plugin(
99
id = "configlib",
1010
name = "ConfigLib",
11-
version = "3.1.0",
11+
version = "4.0.0",
1212
url = "https://github.com/Exlll/ConfigLib",
1313
description = "A library for working with YAML configurations.",
1414
authors = {"Exlll"}

configlib-waterfall/src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: ConfigLib
2-
version: 3.1.0
2+
version: 4.0.0
33
website: https://github.com/Exlll/ConfigLib
44
description: A library for working with YAML configurations.
55
author: Exlll

0 commit comments

Comments
 (0)