Skip to content

Commit

Permalink
1.0.1 ready
Browse files Browse the repository at this point in the history
  • Loading branch information
Innectic committed Aug 2, 2018
1 parent 3c370bb commit 6f342cf
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion API/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>Permissify</artifactId>
<groupId>me.innectic</groupId>
<version>1.0-SNAPSHOT</version>
<version>1.0.1</version>
</parent>

<artifactId>PermissifyAPI</artifactId>
Expand Down
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and most importantly, *no errors caused by the plugin*.

# Builds

You can download the latest version of Permissify from the [releases](https://github.com/Innectic/Permissify/releases) page.
You can download the latest version of Permissify from the [releases](https://github.com/IfyDev/Permissify/releases) page.

# Contributing

Expand Down Expand Up @@ -50,17 +50,20 @@ player.sendMessage("Wow, you're cool!");

#### Don't
```java

public void things()
{
// stuff
if (something)
{
// Stuff
}
}
```

#### Do:
```java

public void things() {
// stuff
if (something) {
// stuff
}
}
```
4 changes: 2 additions & 2 deletions Spigot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>Permissify</artifactId>
<groupId>me.innectic</groupId>
<version>1.0-SNAPSHOT</version>
<version>1.0.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>PermissifySpigot</artifactId>
Expand All @@ -26,7 +26,7 @@
<dependency>
<groupId>me.innectic</groupId>
<artifactId>PermissifyAPI</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.1</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion Spigot/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Permissify
version: 1.0
version: 1.0.1
authors: [Innectic]
description: Permissify is a dead-simple, next-generation permission plugin.
main: me.innectic.permissify.spigot.PermissifyMain
Expand Down
4 changes: 2 additions & 2 deletions Sponge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.innectic</groupId>
<artifactId>PermissifySponge</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.1</version>
<packaging>jar</packaging>

<name>PermissifySponge</name>
Expand Down Expand Up @@ -147,7 +147,7 @@
<dependency>
<groupId>me.innectic</groupId>
<artifactId>PermissifyAPI</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.1</version>
</dependency>
</dependencies>
<reporting>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>me.innectic</groupId>
<artifactId>Permissify</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<version>1.0.1</version>

<modules>
<module>Spigot</module>
Expand Down

0 comments on commit 6f342cf

Please sign in to comment.