Skip to content

Commit 6f342cf

Browse files
committed
1.0.1 ready
1 parent 3c370bb commit 6f342cf

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

API/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>Permissify</artifactId>
77
<groupId>me.innectic</groupId>
8-
<version>1.0-SNAPSHOT</version>
8+
<version>1.0.1</version>
99
</parent>
1010

1111
<artifactId>PermissifyAPI</artifactId>

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and most importantly, *no errors caused by the plugin*.
77

88
# Builds
99

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

1212
# Contributing
1313

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

5151
#### Don't
5252
```java
53-
5453
public void things()
5554
{
56-
// stuff
55+
if (something)
56+
{
57+
// Stuff
58+
}
5759
}
5860
```
5961

6062
#### Do:
6163
```java
62-
6364
public void things() {
64-
// stuff
65+
if (something) {
66+
// stuff
67+
}
6568
}
6669
```

Spigot/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>Permissify</artifactId>
77
<groupId>me.innectic</groupId>
8-
<version>1.0-SNAPSHOT</version>
8+
<version>1.0.1</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111
<artifactId>PermissifySpigot</artifactId>
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>me.innectic</groupId>
2828
<artifactId>PermissifyAPI</artifactId>
29-
<version>1.0-SNAPSHOT</version>
29+
<version>1.0.1</version>
3030
</dependency>
3131
</dependencies>
3232

Spigot/src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Permissify
2-
version: 1.0
2+
version: 1.0.1
33
authors: [Innectic]
44
description: Permissify is a dead-simple, next-generation permission plugin.
55
main: me.innectic.permissify.spigot.PermissifyMain

Sponge/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>me.innectic</groupId>
88
<artifactId>PermissifySponge</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0.1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>PermissifySponge</name>
@@ -147,7 +147,7 @@
147147
<dependency>
148148
<groupId>me.innectic</groupId>
149149
<artifactId>PermissifyAPI</artifactId>
150-
<version>1.0-SNAPSHOT</version>
150+
<version>1.0.1</version>
151151
</dependency>
152152
</dependencies>
153153
<reporting>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>me.innectic</groupId>
88
<artifactId>Permissify</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0-SNAPSHOT</version>
10+
<version>1.0.1</version>
1111

1212
<modules>
1313
<module>Spigot</module>

0 commit comments

Comments
 (0)