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.
dev v4.3.0
Exlll 12 months ago
parent a5d05e256c
commit 9ff59e2ca4

@ -934,7 +934,7 @@ replace `configlib-yaml` with `configlib-paper`
<dependency>
<groupId>com.github.Exlll.ConfigLib</groupId>
<artifactId>configlib-yaml</artifactId>
<version>v4.2.0</version>
<version>v4.3.0</version>
</dependency>
```
@ -943,13 +943,13 @@ replace `configlib-yaml` with `configlib-paper`
```groovy
repositories { maven { url 'https://jitpack.io' } }
dependencies { implementation 'com.github.Exlll.ConfigLib:configlib-yaml:v4.2.0' }
dependencies { implementation 'com.github.Exlll.ConfigLib:configlib-yaml:v4.3.0' }
```
```kotlin
repositories { maven { url = uri("https://jitpack.io") } }
dependencies { implementation("com.github.Exlll.ConfigLib:configlib-yaml:v4.2.0") }
dependencies { implementation("com.github.Exlll.ConfigLib:configlib-yaml:v4.3.0") }
```
</details>
@ -974,7 +974,7 @@ trouble with that.
<dependency>
<groupId>de.exlll</groupId>
<artifactId>configlib-yaml</artifactId>
<version>4.2.0</version>
<version>4.3.0</version>
</dependency>
```
@ -983,13 +983,13 @@ trouble with that.
```groovy
repositories { maven { url 'https://maven.pkg.github.com/Exlll/ConfigLib' } }
dependencies { implementation 'de.exlll:configlib-yaml:4.2.0' }
dependencies { implementation 'de.exlll:configlib-yaml:4.3.0' }
```
```kotlin
repositories { maven { url = uri("https://maven.pkg.github.com/Exlll/ConfigLib") } }
dependencies { implementation("de.exlll:configlib-yaml:4.2.0") }
dependencies { implementation("de.exlll:configlib-yaml:4.3.0") }
```
</details>

@ -1,4 +1,4 @@
allprojects {
group = "de.exlll"
version = "4.2.0"
version = "4.3.0"
}

@ -1,5 +1,5 @@
name: ConfigLib
version: 4.2.0
version: 4.3.0
website: https://github.com/Exlll/ConfigLib
description: A library for working with YAML configurations.
author: Exlll

@ -8,7 +8,7 @@ import com.velocitypowered.api.plugin.Plugin;
@Plugin(
id = "configlib",
name = "ConfigLib",
version = "4.2.0",
version = "4.3.0",
url = "https://github.com/Exlll/ConfigLib",
description = "A library for working with YAML configurations.",
authors = {"Exlll"}

@ -1,5 +1,5 @@
name: ConfigLib
version: 4.2.0
version: 4.3.0
website: https://github.com/Exlll/ConfigLib
description: A library for working with YAML configurations.
author: Exlll

Loading…
Cancel
Save