Skip to content

Commit

Permalink
bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
arlyon committed Jul 2, 2018
1 parent f3c61e3 commit 6ae93a7
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
version 1.3.2

- fairly substantial rewrite of algorithm to correctly trigger all events
- removal of the silk touch option

version 1.3.1

- fix silly null pointer
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ forge_version=14.23.3.2655
mappings_version=snapshot_nodoc_20171202

# Mod
mod_version=1.3.1
mod_version=1.3.2
compatible_versions=1.12.x

# Curse
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/arlyon/veining/Veining.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class Veining {
);
public static final Map<Integer, PlayerSettings> playerSettings = new HashMap<>();
static final String MOD_NAME = "Veining";
static final String MOD_VERSION = "1.3.1";
static final String MOD_VERSION = "1.3.2";
static final String UPDATE_JSON = "https://raw.githubusercontent.com/arlyon/veining/1.12.x/update.json";
static final String MINECRAFT_VERSIONS = "[1.12.0, 1.12.2]"; // starting with 1.12, up to 1.12.2
public static Logger log;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "veining",
"name": "Veining",
"description": "Uncovers an ancient enchantment allows you to mine veins in a single swing.",
"version": "1.3.1",
"version": "1.3.2",
"mcversion": "1.12.2",
"url": "https://github.com/arlyon/veining",
"updateUrl": "",
Expand Down
15 changes: 9 additions & 6 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
{
"homepage": "https://minecraft.curseforge.com/projects/veining",
"1.12.2": {
"1.3.2": "https://github.com/arlyon/veining/releases/tag/1.3.2/1.12.x",
"1.3.1": "https://github.com/arlyon/veining/releases/tag/1.3.1/1.12.x",
"1.3.0": "https://github.com/arlyon/veining/releases/tag/1.3.0/1.12.x",
"1.2.2": "https://github.com/arlyon/veining/releases/tag/1.2.2/1.12.x",
"1.2.1": "https://github.com/arlyon/veining/releases/tag/1.2.1/1.12.x",
"1.2.0": "https://github.com/arlyon/veining/releases/tag/1.2.0/1.12.x"
},
"1.12.1": {
"1.3.2": "https://github.com/arlyon/veining/releases/tag/1.3.2/1.12.x",
"1.3.1": "https://github.com/arlyon/veining/releases/tag/1.3.1/1.12.x",
"1.3.0": "https://github.com/arlyon/veining/releases/tag/1.3.0/1.12.x",
"1.2.2": "https://github.com/arlyon/veining/releases/tag/1.2.2/1.12.x",
"1.2.1": "https://github.com/arlyon/veining/releases/tag/1.2.1/1.12.x",
"1.2.0": "https://github.com/arlyon/veining/releases/tag/1.2.0/1.12.x"
},
"1.12": {
"1.3.2": "https://github.com/arlyon/veining/releases/tag/1.3.2/1.12.x",
"1.3.1": "https://github.com/arlyon/veining/releases/tag/1.3.1/1.12.x",
"1.3.0": "https://github.com/arlyon/veining/releases/tag/1.3.0/1.12.x",
"1.2.2": "https://github.com/arlyon/veining/releases/tag/1.2.2/1.12.x",
Expand All @@ -36,12 +39,12 @@
"1.2.1": "https://github.com/arlyon/veining/releases/tag/1.2.1/1.11.x"
},
"promos": {
"1.12.2-latest": "1.3.1",
"1.12.2-recommended": "1.3.1",
"1.12.1-latest": "1.3.1",
"1.12.1-recommended": "1.3.1",
"1.12-latest": "1.3.1",
"1.12-recommended": "1.3.1",
"1.12.2-latest": "1.3.2",
"1.12.2-recommended": "1.3.2",
"1.12.1-latest": "1.3.2",
"1.12.1-recommended": "1.3.2",
"1.12-latest": "1.3.2",
"1.12-recommended": "1.3.2",
"1.11.2-latest": "1.2.2",
"1.11.2-recommended": "1.2.2",
"1.11.1-latest": "1.2.2",
Expand Down

0 comments on commit 6ae93a7

Please sign in to comment.