Skip to content

Commit

Permalink
update files for release 2.0.0-beta.0 (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
AarKro authored Jul 28, 2020
1 parent 1de8720 commit deb9d74
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
logs/
env_var.sh
deployment.sql
dump.sql

##############################
## Website
Expand Down
6 changes: 3 additions & 3 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hera</artifactId>
<groupId>hera</groupId>
<version>2.0.0-alpha.3</version>
<version>2.0.0-beta.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down Expand Up @@ -45,12 +45,12 @@
<dependency>
<groupId>hera</groupId>
<artifactId>data</artifactId>
<version>2.0.0-alpha.3</version>
<version>2.0.0-beta.0</version>
</dependency>
<dependency>
<groupId>hera</groupId>
<artifactId>metrics</artifactId>
<version>2.0.0-alpha.3</version>
<version>2.0.0-beta.0</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hera</artifactId>
<groupId>hera</groupId>
<version>2.0.0-alpha.3</version>
<version>2.0.0-beta.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion environment/sql/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ INSERT INTO `command` (`name`, `description`, `paramCount`, `optionalParams`, `l
INSERT INTO `command` (`name`, `description`, `paramCount`, `optionalParams`, `level`, `minPermission`) VALUES ('DELETEALIAS', (SELECT `id` FROM `localisation` WHERE `name` = 'COMMAND_DESC_DELETEALIAS'), 1, 0, 1, 3072);
INSERT INTO `command` (`name`, `description`, `paramCount`, `optionalParams`, `level`, `minPermission`) VALUES ('CONFIG', (SELECT `id` FROM `localisation` WHERE `name` = 'COMMAND_DESC_CONFIG'), 0, 1, 1, 3072);

INSERT INTO `global_setting` (`name`, `value`) VALUES ('VERSION', '2.0.0-alpha.3');
INSERT INTO `global_setting` (`name`, `value`) VALUES ('VERSION', '2.0.0-beta.0');

INSERT INTO `alias` (`commandFK`, `alias`) VALUES ((SELECT `id` FROM `command` WHERE `name` = 'PLAY'), 'P');
INSERT INTO `alias` (`commandFK`, `alias`) VALUES ((SELECT `id` FROM `command` WHERE `name` = 'QUEUE'), 'Q');
Expand Down
4 changes: 2 additions & 2 deletions metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>hera</artifactId>
<groupId>hera</groupId>
<version>2.0.0-alpha.3</version>
<version>2.0.0-beta.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -15,7 +15,7 @@
<dependency>
<groupId>hera</groupId>
<artifactId>data</artifactId>
<version>2.0.0-alpha.3</version>
<version>2.0.0-beta.0</version>
</dependency>
</dependencies>
</project>
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>hera</groupId>
<artifactId>hera</artifactId>
<version>2.0.0-alpha.3</version>
<version>2.0.0-beta.0</version>

<packaging>pom</packaging>

Expand Down

0 comments on commit deb9d74

Please sign in to comment.