Skip to content

Commit

Permalink
release: 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vectrixdevelops committed Aug 28, 2024
1 parent cd5d7a4 commit 7fe1d08
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=space.vectrix.ignite
version=1.1.0-SNAPSHOT
version=1.1.0
description=A mixin mod loader for Paper/Spigot.

org.gradle.parallel=true
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* Provides a game locator for Velocity.
*
* @author vectrix
* @since 1.0.2
* @since 1.1.0
*/
public final class VelocityGameLocator implements GameLocatorService {
private VelocityGameProvider provider;
Expand Down
20 changes: 10 additions & 10 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ To depend on the Ignite API in order to create your mod, you will need to add th
repositories {
mavenCentral()
maven {
url = "https://repo.spongepowered.org/maven/"
url = "https://maven.fabricmc.net/"
}
}
dependencies {
compileOnly "space.vectrix.ignite:ignite-api:1.0.1"
compileOnly "org.spongepowered:mixin:0.8.5"
compileOnly "io.github.llamalad7:mixinextras-common:0.3.5"
compileOnly "space.vectrix.ignite:ignite-api:1.1.0"
compileOnly "net.fabricmc:sponge-mixin:0.15.2+mixin.0.8.7"
compileOnly "io.github.llamalad7:mixinextras-common:0.4.1"
}
```

Expand All @@ -57,25 +57,25 @@ dependencies {
```xml
<repositories>
<repository>
<url>https://repo.spongepowered.org/maven/</url>
<url>https://maven.fabricmc.net/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>space.vectrix.ignite</groupId>
<artifactId>ignite-api</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>org.spongepowered</groupId>
<artifactId>mixin</artifactId>
<version>0.8.5</version>
<groupId>net.fabricmc</groupId>
<artifactId>sponge-mixin</artifactId>
<version>0.15.2+mixin.0.8.7</version>
</dependency>
<dependency>
<groupId>io.github.llamalad7</groupId>
<artifactId>mixinextras-common</artifactId>
<version>0.3.5</version>
<version>0.4.1</version>
</dependency>
</dependencies>
```
Expand Down

0 comments on commit 7fe1d08

Please sign in to comment.