Skip to content

Commit

Permalink
Version 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
LlamaLad7 committed Jan 17, 2024
1 parent 74e31b5 commit 3fa815d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ want to use a different version than is provided, see below:

```gradle
dependencies {
implementation(jarJar("io.github.llamalad7:mixinextras-neoforge:0.3.4")) {
jarJar.ranged(it, "[0.3.4,)")
implementation(jarJar("io.github.llamalad7:mixinextras-neoforge:0.3.5")) {
jarJar.ranged(it, "[0.3.5,)")
}
}
```
Expand All @@ -40,9 +40,9 @@ dependencies {

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

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

Expand All @@ -72,7 +72,7 @@ configurations {
}
dependencies {
shadow(annotationProcessor("io.github.llamalad7:mixinextras-common:0.3.4"))
shadow(annotationProcessor("io.github.llamalad7:mixinextras-common:0.3.5"))
}
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.3.4"
version = "0.3.5"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ 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_3_4("0.3.4", 213);
V0_3_4("0.3.4", 213),
V0_3_5("0.3.5", 214);

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

Expand Down

0 comments on commit 3fa815d

Please sign in to comment.