Skip to content

Commit

Permalink
Update version to 4.3.0
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
Exlll committed Dec 2, 2023
1 parent a5d05e2 commit 9ff59e2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
```

Expand All @@ -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>
Expand All @@ -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>
```

Expand All @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
allprojects {
group = "de.exlll"
version = "4.2.0"
version = "4.3.0"
}
2 changes: 1 addition & 1 deletion configlib-paper/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@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"}
Expand Down
2 changes: 1 addition & 1 deletion configlib-waterfall/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 9ff59e2

Please sign in to comment.