Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroHc committed Dec 16, 2023
1 parent 7256208 commit c581e2f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Schematic4j

[![Latest version](https://img.shields.io/maven-central/v/net.sandrohc/schematic4j?label=version)](https://central.sonatype.com/artifact/net.sandrohc/schematic4j)

Java parser for the .schem/.schematic/.litematic Minecraft formats. 🗺

## Supported formats
Expand Down Expand Up @@ -31,7 +33,7 @@ repositories {
}
dependencies {
implementation 'net.sandrohc:schematic4j:1.0.1'
implementation 'net.sandrohc:schematic4j:1.1.0'
}
```

Expand All @@ -40,7 +42,7 @@ If using Maven (`pom.xml`):
<dependency>
<groupId>net.sandrohc</groupId>
<artifactId>schematic4j</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
</dependency>
```

Expand All @@ -58,9 +60,9 @@ Schematic schematic = SchematicLoader.load("/path/to/your.schematic");
schematic.name();
schematic.width();
schematic.height();
schematic.lenght();
schematic.length();
schematic.block(0, 0, 0).name;
schematic.blocks().next();
schematic.blockEntities().next();
schematic.entities().next();
schematic.blocks().collect(Collectors.toList());
schematic.blockEntities().collect(Collectors.toList());
schematic.entities().collect(Collectors.toList());
```
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'net.sandrohc'
version '1.0.1'
version '1.1.0'

ext.isReleaseVersion = !version.endsWith('SNAPSHOT')

Expand Down

0 comments on commit c581e2f

Please sign in to comment.