Skip to content

Commit 211dfb6

Browse files
authored
Merge pull request #119 from Shynixn/development
Merge changes to master --release
2 parents 71d3aaf + ca5e27b commit 211dfb6

File tree

10 files changed

+28
-27
lines changed

10 files changed

+28
-27
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ tasks.register("printVersion") {
4343

4444
subprojects {
4545
group 'com.github.shynixn.mccoroutine'
46-
version '2.17.0'
46+
version '2.18.0'
4747

4848
sourceCompatibility = 1.8
4949

docs/wiki/docs/installation.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,62 +8,62 @@ In order to use the MCCoroutine Kotlin API, you need to include the following li
88

99
```groovy
1010
dependencies {
11-
implementation("com.github.shynixn.mccoroutine:mccoroutine-bukkit-api:2.17.0")
12-
implementation("com.github.shynixn.mccoroutine:mccoroutine-bukkit-core:2.17.0")
11+
implementation("com.github.shynixn.mccoroutine:mccoroutine-bukkit-api:2.18.0")
12+
implementation("com.github.shynixn.mccoroutine:mccoroutine-bukkit-core:2.18.0")
1313
}
1414
```
1515

1616
=== "BungeeCord"
1717

1818
```groovy
1919
dependencies {
20-
implementation("com.github.shynixn.mccoroutine:mccoroutine-bungeecord-api:2.17.0")
21-
implementation("com.github.shynixn.mccoroutine:mccoroutine-bungeecord-core:2.17.0")
20+
implementation("com.github.shynixn.mccoroutine:mccoroutine-bungeecord-api:2.18.0")
21+
implementation("com.github.shynixn.mccoroutine:mccoroutine-bungeecord-core:2.18.0")
2222
}
2323
```
2424

2525
=== "Fabric"
2626

2727
```groovy
2828
dependencies {
29-
implementation("com.github.shynixn.mccoroutine:mccoroutine-fabric-api:2.17.0")
30-
implementation("com.github.shynixn.mccoroutine:mccoroutine-fabric-core:2.17.0")
29+
implementation("com.github.shynixn.mccoroutine:mccoroutine-fabric-api:2.18.0")
30+
implementation("com.github.shynixn.mccoroutine:mccoroutine-fabric-core:2.18.0")
3131
}
3232
```
3333

3434
=== "Folia"
3535

3636
```groovy
3737
dependencies {
38-
implementation("com.github.shynixn.mccoroutine:mccoroutine-folia-api:2.17.0")
39-
implementation("com.github.shynixn.mccoroutine:mccoroutine-folia-core:2.17.0")
38+
implementation("com.github.shynixn.mccoroutine:mccoroutine-folia-api:2.18.0")
39+
implementation("com.github.shynixn.mccoroutine:mccoroutine-folia-core:2.18.0")
4040
}
4141
```
4242

4343
=== "Minestom"
4444

4545
```groovy
4646
dependencies {
47-
implementation("com.github.shynixn.mccoroutine:mccoroutine-minestom-api:2.17.0")
48-
implementation("com.github.shynixn.mccoroutine:mccoroutine-minestom-core:2.17.0")
47+
implementation("com.github.shynixn.mccoroutine:mccoroutine-minestom-api:2.18.0")
48+
implementation("com.github.shynixn.mccoroutine:mccoroutine-minestom-core:2.18.0")
4949
}
5050
```
5151

5252
=== "Sponge"
5353

5454
```groovy
5555
dependencies {
56-
implementation("com.github.shynixn.mccoroutine:mccoroutine-sponge-api:2.17.0")
57-
implementation("com.github.shynixn.mccoroutine:mccoroutine-sponge-core:2.17.0")
56+
implementation("com.github.shynixn.mccoroutine:mccoroutine-sponge-api:2.18.0")
57+
implementation("com.github.shynixn.mccoroutine:mccoroutine-sponge-core:2.18.0")
5858
}
5959
```
6060

6161
=== "Velocity"
6262

6363
```groovy
6464
dependencies {
65-
implementation("com.github.shynixn.mccoroutine:mccoroutine-velocity-api:2.17.0")
66-
implementation("com.github.shynixn.mccoroutine:mccoroutine-velocity-core:2.17.0")
65+
implementation("com.github.shynixn.mccoroutine:mccoroutine-velocity-api:2.18.0")
66+
implementation("com.github.shynixn.mccoroutine:mccoroutine-velocity-core:2.18.0")
6767
}
6868
```
6969

@@ -87,17 +87,17 @@ dependencies {
8787
**plugin.yml**
8888
```yaml
8989
libraries:
90-
- com.github.shynixn.mccoroutine:mccoroutine-bukkit-api:2.17.0
91-
- com.github.shynixn.mccoroutine:mccoroutine-bukkit-core:2.17.0
90+
- com.github.shynixn.mccoroutine:mccoroutine-bukkit-api:2.18.0
91+
- com.github.shynixn.mccoroutine:mccoroutine-bukkit-core:2.18.0
9292
```
9393

9494
=== "Folia"
9595

9696
**plugin.yml**
9797
```yaml
9898
libraries:
99-
- com.github.shynixn.mccoroutine:mccoroutine-folia-api:2.17.0
100-
- com.github.shynixn.mccoroutine:mccoroutine-folia-core:2.17.0
99+
- com.github.shynixn.mccoroutine:mccoroutine-folia-api:2.18.0
100+
- com.github.shynixn.mccoroutine:mccoroutine-folia-core:2.18.0
101101
```
102102

103103

docs/wiki/docs/unittests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ feedback to the real environment.
1818

1919
```kotlin
2020
dependencies {
21-
testImplementation("com.github.shynixn.mccoroutine:mccoroutine-bukkit-test:2.17.0")
21+
testImplementation("com.github.shynixn.mccoroutine:mccoroutine-bukkit-test:2.18.0")
2222
}
2323
```
2424

mccoroutine-bukkit-sample/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: MCCoroutine-Sample
2-
version: 2.17.0
2+
version: 2.18.0
33
author: Shynixn
44
main: com.github.shynixn.mccoroutine.bukkit.sample.MCCoroutineSamplePlugin
55
commands:

mccoroutine-bungeecord-sample/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: MCCoroutine-Sample
2-
version: 2.17.0
2+
version: 2.18.0
33
author: Shynixn
44
main: com.github.shynixn.mccoroutine.bungeecord.sample.MCCoroutineSamplePlugin
55
commands:

mccoroutine-fabric-api/src/main/java/com/github/shynixn/mccoroutine/fabric/MCCoroutineExceptionEvent.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import net.fabricmc.fabric.api.event.EventFactory
77
* A Fabric event which is called when an exception is raised in one of the coroutines managed by MCCoroutine.
88
* Cancelling this exception causes the error to not get logged and offers to possibility for custom logging.
99
*/
10+
@FunctionalInterface
1011
interface MCCoroutineExceptionEvent {
1112
companion object {
1213
val EVENT: Event<MCCoroutineExceptionEvent> =

mccoroutine-fabric-sample/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ repositories {
99
mavenLocal()
1010
}
1111
dependencies {
12-
implementation("com.github.shynixn.mccoroutine:mccoroutine-fabric-api:2.17.0")
13-
implementation("com.github.shynixn.mccoroutine:mccoroutine-fabric-core:2.17.0")
12+
implementation("com.github.shynixn.mccoroutine:mccoroutine-fabric-api:2.18.0")
13+
implementation("com.github.shynixn.mccoroutine:mccoroutine-fabric-core:2.18.0")
1414

1515
minecraft("com.mojang", "minecraft", project.extra["minecraft_version"] as String)
1616
mappings("net.fabricmc", "yarn", project.extra["yarn_mappings"] as String, null, "v2")

mccoroutine-folia-sample/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: MCCoroutine-Sample
2-
version: 2.17.0
2+
version: 2.18.0
33
author: Shynixn
44
main: com.github.shynixn.mccoroutine.folia.sample.MCCoroutineSamplePlugin
55
folia-supported: true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"entrypoint": "com.github.shynixn.mccoroutine.minestom.sample.extension.MCCoroutineSampleExtension",
33
"name": "MCCoroutineSampleExtension",
4-
"version": "2.17.0"
4+
"version": "2.18.0"
55
}

mccoroutine-sponge-sample/src/main/resources/mcmod.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[{
22
"modid": "mccoroutinesample",
33
"name": "MCCoroutineSample",
4-
"version": "2.17.0",
4+
"version": "2.18.0",
55
"description": "MCCoroutineSample is sample plugin to use MCCoroutine in Sponge.",
66
"authorList": [
77
"Shynixn"

0 commit comments

Comments
 (0)