Skip to content

Commit

Permalink
Update version to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Exlll committed Jan 26, 2024
1 parent dcb8aaf commit 45c94ef
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.3.0</version>
<version>v4.4.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.3.0' }
dependencies { implementation 'com.github.Exlll.ConfigLib:configlib-yaml:v4.4.0' }
```

```kotlin
repositories { maven { url = uri("https://jitpack.io") } }
dependencies { implementation("com.github.Exlll.ConfigLib:configlib-yaml:v4.3.0") }
dependencies { implementation("com.github.Exlll.ConfigLib:configlib-yaml:v4.4.0") }
```

</details>
Expand All @@ -974,7 +974,7 @@ trouble with that.
<dependency>
<groupId>de.exlll</groupId>
<artifactId>configlib-yaml</artifactId>
<version>4.3.0</version>
<version>4.4.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.3.0' }
dependencies { implementation 'de.exlll:configlib-yaml:4.4.0' }
```

```kotlin
repositories { maven { url = uri("https://maven.pkg.github.com/Exlll/ConfigLib") } }
dependencies { implementation("de.exlll:configlib-yaml:4.3.0") }
dependencies { implementation("de.exlll:configlib-yaml:4.4.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.3.0"
version = "4.4.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.3.0
version: 4.4.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.3.0",
version = "4.4.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.3.0
version: 4.4.0
website: https://github.com/Exlll/ConfigLib
description: A library for working with YAML configurations.
author: Exlll
Expand Down

0 comments on commit 45c94ef

Please sign in to comment.