Skip to content

Commit

Permalink
Release v1.2.0
Browse files Browse the repository at this point in the history
* [Bugfix] Re-added columns that were accidentally deleted from CREATE TABLE script
  • Loading branch information
ReidWeb committed Mar 16, 2017
1 parent 377c2a2 commit 9e5dc4f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
v1.3.2
======
* New reputation columns accidentally deleted from CREATE TABLE script.

v1.3.1
======
* Resolved bug with mismatching number of column headers and values in SQL inserts
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>com.ffxivcensus.gatherer</groupId>
<artifactId>XIVStats-Gatherer-Java</artifactId>
<version>v1.3.1</version>
<version>v1.3.2</version>
<name>XIVStats Lodestone Gatherer</name>
<url>https://github.com/xivstats</url>

Expand Down
Expand Up @@ -354,7 +354,7 @@ private void createTable(String tableName) {
sbSQL.append("soundtrack BIT,saweternalbond BIT,sightseeing BIT,comm50 BIT,moogleplush BIT,");
sbSQL.append("topazcarubuncleplush BIT,emeraldcarbuncleplush BIT,");
sbSQL.append("hildibrand BIT, dideternalbond BIT, arrcollector BIT,");
sbSQL.append("kobold BIT, sahagin BIT, amaljaa BIT, sylph BIT,");
sbSQL.append("kobold BIT, sahagin BIT, amaljaa BIT, sylph BIT, moogle BIT, vanuvanu BIT, vath BIT,");
sbSQL.append("arr_25_complete BIT,hw_complete BIT, hw_31_complete BIT, hw_33_complete BIT, legacy_player BIT");
}
if (this.storeMounts) {
Expand Down

1 comment on commit 9e5dc4f

@ReidWeb
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Meant to name this commit Release v1.3.2

Please sign in to comment.