Skip to content

Commit 0f3656a

Browse files
committed
Update version to 4.1.0
* Added jitpack.io support (by @RobotHanzo) * Added two new NameFormatters (by @Insprill) - LOWER_KEBAB_CASE - UPPER_KEBAB_CASE * Fixed handling of comments that contain newlines (by @Insprill)
1 parent e1dcacb commit 0f3656a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ this [issue](https://github.com/Exlll/ConfigLib/issues/12) if you have any troub
697697
<dependency>
698698
<groupId>de.exlll</groupId>
699699
<artifactId>configlib-yaml</artifactId>
700-
<version>4.0.0</version>
700+
<version>4.1.0</version>
701701
</dependency>
702702
```
703703

@@ -706,13 +706,13 @@ this [issue](https://github.com/Exlll/ConfigLib/issues/12) if you have any troub
706706
```groovy
707707
repositories { maven { url 'https://maven.pkg.github.com/Exlll/ConfigLib' } }
708708
709-
dependencies { implementation 'de.exlll:configlib-yaml:4.0.0' }
709+
dependencies { implementation 'de.exlll:configlib-yaml:4.1.0' }
710710
```
711711

712712
```kotlin
713713
repositories { maven { url = uri("https://maven.pkg.github.com/Exlll/ConfigLib") } }
714714
715-
dependencies { implementation("de.exlll:configlib-yaml:4.0.0") }
715+
dependencies { implementation("de.exlll:configlib-yaml:4.1.0") }
716716
```
717717

718718
</details>

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
allprojects {
22
group = "de.exlll"
3-
version = "4.0.0"
4-
}
3+
version = "4.1.0"
4+
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: ConfigLib
2-
version: 4.0.0
2+
version: 4.1.0
33
website: https://github.com/Exlll/ConfigLib
44
description: A library for working with YAML configurations.
55
author: Exlll
66
main: de.exlll.configlib.ConfigLib
7-
api-version: 1.19
7+
api-version: 1.19

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 = "4.0.0",
11+
version = "4.1.0",
1212
url = "https://github.com/Exlll/ConfigLib",
1313
description = "A library for working with YAML configurations.",
1414
authors = {"Exlll"}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: ConfigLib
2-
version: 4.0.0
2+
version: 4.1.0
33
website: https://github.com/Exlll/ConfigLib
44
description: A library for working with YAML configurations.
55
author: Exlll
6-
main: de.exlll.configlib.ConfigLib
6+
main: de.exlll.configlib.ConfigLib

0 commit comments

Comments
 (0)