Skip to content

Commit 9ff59e2

Browse files
committed
Update version to 4.3.0
* Added a new interface, IOStreamConfigurationStore, that provides the two methods read and write which take an InputStream and OutputStream, respectively. This interface is implemented by the YamlConfigurationStore class. * Added several static methods to the YamlConfigurations class that correspond to these new read/write methods.
1 parent a5d05e2 commit 9ff59e2

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ replace `configlib-yaml` with `configlib-paper`
934934
<dependency>
935935
<groupId>com.github.Exlll.ConfigLib</groupId>
936936
<artifactId>configlib-yaml</artifactId>
937-
<version>v4.2.0</version>
937+
<version>v4.3.0</version>
938938
</dependency>
939939
```
940940

@@ -943,13 +943,13 @@ replace `configlib-yaml` with `configlib-paper`
943943
```groovy
944944
repositories { maven { url 'https://jitpack.io' } }
945945
946-
dependencies { implementation 'com.github.Exlll.ConfigLib:configlib-yaml:v4.2.0' }
946+
dependencies { implementation 'com.github.Exlll.ConfigLib:configlib-yaml:v4.3.0' }
947947
```
948948

949949
```kotlin
950950
repositories { maven { url = uri("https://jitpack.io") } }
951951
952-
dependencies { implementation("com.github.Exlll.ConfigLib:configlib-yaml:v4.2.0") }
952+
dependencies { implementation("com.github.Exlll.ConfigLib:configlib-yaml:v4.3.0") }
953953
```
954954

955955
</details>
@@ -974,7 +974,7 @@ trouble with that.
974974
<dependency>
975975
<groupId>de.exlll</groupId>
976976
<artifactId>configlib-yaml</artifactId>
977-
<version>4.2.0</version>
977+
<version>4.3.0</version>
978978
</dependency>
979979
```
980980

@@ -983,13 +983,13 @@ trouble with that.
983983
```groovy
984984
repositories { maven { url 'https://maven.pkg.github.com/Exlll/ConfigLib' } }
985985
986-
dependencies { implementation 'de.exlll:configlib-yaml:4.2.0' }
986+
dependencies { implementation 'de.exlll:configlib-yaml:4.3.0' }
987987
```
988988

989989
```kotlin
990990
repositories { maven { url = uri("https://maven.pkg.github.com/Exlll/ConfigLib") } }
991991
992-
dependencies { implementation("de.exlll:configlib-yaml:4.2.0") }
992+
dependencies { implementation("de.exlll:configlib-yaml:4.3.0") }
993993
```
994994

995995
</details>

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 = "4.2.0"
3+
version = "4.3.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: 4.2.0
2+
version: 4.3.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 = "4.2.0",
11+
version = "4.3.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: 4.2.0
2+
version: 4.3.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)