Skip to content

Commit

Permalink
update version & changelog for 1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
efekos committed Sep 20, 2023
1 parent f419949 commit 86f5d3c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,7 @@
* **Renamed** `JSONDataManager` to `ListDataManager`

## 1.5.5
* **Fixed** An issue causing due to optional parameters in `CoreCommand`
* **Fixed** An issue causing due to optional parameters in `CoreCommand`

## 1.5.6
* **Fixed** The same issue, I hope.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![](https://jitpack.io/v/efe124/Simpler.svg)](https://jitpack.io/#efe124/Simpler)
[![License: ISC](https://img.shields.io/badge/License-ISC-yellow.svg)](https://opensource.org/licenses/ISC)
![version](https://img.shields.io/badge/version-1.5.5-blue)
![version](https://img.shields.io/badge/version-1.5.6-blue)
# Simpler

<!-- TOC -->
Expand Down Expand Up @@ -29,7 +29,7 @@
<dependency>
<groupId>com.github.efe124</groupId>
<artifactId>Simpler</artifactId>
<version>1.5.5</version>
<version>1.5.6</version>
</dependency>
````

Expand All @@ -47,6 +47,6 @@ allprojects {
* Add this dependency:
````gradle
dependencies {
implementation 'com.github.efe124:Simpler:1.5.5'
implementation 'com.github.efe124:Simpler:1.5.6'
}
````
4 changes: 2 additions & 2 deletions guide/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add this dependency to your dependencies.
<dependency>
<groupId>com.github.efe124</groupId>
<artifactId>Simpler</artifactId>
<version>1.5.5</version>
<version>1.5.6</version>
</dependency>
````

Expand All @@ -44,6 +44,6 @@ allprojects {
Add this dependency
````gradle
dependencies {
implementation 'com.github.efe124:Simpler:1.5.5'
implementation 'com.github.efe124:Simpler:1.5.6'
}
````
2 changes: 1 addition & 1 deletion guide/Introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Simpler is an API to help you to make Minecraft plugins. It has a lot of feature
## Features

### Commands
Command features helps you to make commands, getting rid of some `if` statements and providing advanced syntaxes for your command. You can use a `BaseCommand`, but you can also use `CoreCommand` with a `SubCommand` for creating core commands that contains other sub commands inside of it.
Command features helps you to make commands, getting rid of some `if` statements and providing advanced syntax's for your command. You can use a `BaseCommand`, but you can also use `CoreCommand` with a `SubCommand` for creating core commands that contains other sub commands inside of it.

### Items
Item features makes creating custom items so much easier. All you have to do is create a `CustomItem` class and that's it! Now you can use this custom item through `ItemManager#giveItem(Player,CustomItem)` and listen for your custom events.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.efekos</groupId>
<artifactId>Simpler</artifactId>
<version>1.5.5</version>
<version>1.5.6</version>
<packaging>jar</packaging>

<name>Simpler</name>
Expand Down

0 comments on commit 86f5d3c

Please sign in to comment.