Skip to content

Commit

Permalink
Version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LlamaLad7 committed Nov 20, 2023
1 parent 50dafb8 commit 5680515
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The setup steps vary based on your platform:

```gradle
dependencies {
include(implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.2.0")))
include(implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.2.1")))
}
```

Expand All @@ -25,8 +25,8 @@ dependencies {
jarJar.enable()
dependencies {
implementation(jarJar("io.github.llamalad7:mixinextras-neoforge:0.2.0")) {
jarJar.ranged(it, "[0.2.0,)")
implementation(jarJar("io.github.llamalad7:mixinextras-neoforge:0.2.1")) {
jarJar.ranged(it, "[0.2.1,)")
}
}
Expand All @@ -38,9 +38,9 @@ tasks.named('build').configure { dependsOn('jarJar') }

```gradle
dependencies {
implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:0.2.0"))
implementation(jarJar("io.github.llamalad7:mixinextras-forge:0.2.0")) {
jarJar.ranged(it, "[0.2.0,)")
implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:0.2.1"))
implementation(jarJar("io.github.llamalad7:mixinextras-forge:0.2.1")) {
jarJar.ranged(it, "[0.2.1,)")
}
}
```
Expand All @@ -50,8 +50,8 @@ dependencies {

```gradle
dependencies {
implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:0.2.0"))
implementation(include("io.github.llamalad7:mixinextras-forge:0.2.0"))
implementation(annotationProcessor("io.github.llamalad7:mixinextras-common:0.2.1"))
implementation(include("io.github.llamalad7:mixinextras-forge:0.2.1"))
}
```

Expand All @@ -70,7 +70,7 @@ configurations {
}
dependencies {
shadow(annotationProcessor("io.github.llamalad7:mixinextras-common:0.2.0"))
shadow(annotationProcessor("io.github.llamalad7:mixinextras-common:0.2.1"))
}
shadowJar {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ allprojects {
apply(plugin = "java")

group = "com.llamalad7"
version = "0.2.1-beta.2"
version = "0.2.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public enum MixinExtrasVersion {
V0_2_0_BETA_7("0.2.0-beta.7", -3),
V0_2_0_BETA_8("0.2.0-beta.8", -2),
V0_2_0_BETA_9("0.2.0-beta.9", -1),
V0_2_1_BETA_2("0.2.1-beta.2", 108);
V0_2_1("0.2.1", 109);

public static final MixinExtrasVersion LATEST = values()[values().length - 1];

Expand Down

0 comments on commit 5680515

Please sign in to comment.