Skip to content

Commit

Permalink
Version bump: 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
piegamesde committed Aug 9, 2020
1 parent ba57e40 commit 0171d5e
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class VersionProvider implements IVersionProvider {

/* This part of the code gets generated automatically through `gradle generateSources`. Do not modify! */
// $REPLACE_START
public static final String VERSION = "2.2.0";
public static final String VERSION = "2.2.1";
// $REPLACE_END

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
public class VersionProvider {
/* This part of the code gets generated automatically through `gradle generateSources`. Do not modify! */
// $REPLACE_START
public static final String VERSION = "2.2.0";
public static final String VERSION = "2.2.1";
// $REPLACE_END
}
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,23 @@
],
"dependency": "com.github.saibotk:JMAW:0.3.1"
},
{
"project": "Semver4j",
"description": "Semantic versioning for Java apps.",
"version": "3.1.0",
"developers": [
"Vincent DURMONT"
],
"url": "https://github.com/vdurmont/semver4j",
"year": null,
"licenses": [
{
"license": "The MIT License",
"license_url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"dependency": "com.vdurmont:semver4j:3.1.0"
},
{
"project": "Smile-core",
"description": "smile-core",
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
- If you won't hack on the code itself, the JRE should suffice (in the downloads section, choose JRE over JDK)
- Past experience has shown that Java updates are not as backwards-compatible as they could be. So while any newer Java version **should** work just fine, it has currently only been tested up to Java 14. If you encounter any problems that go away by downgrading Java, please open up an issue.

## Get it / Installation:
## Download / Installation:

Download the latest version from the [Release page](https://github.com/piegamesde/BlockMap/releases).

Expand All @@ -50,7 +50,7 @@ BlockMap hasn't been packaged for other distros yet (looking for maintainers).

The GUI version should just run by (double)clicking it. Otherwise run it through:

java -jar BlockMap-gui-2.2.0.jar
java -jar BlockMap-gui-2.2.1.jar

to start. If you installed BlockMap through a package manager, search for it in your launcher or menu.

Expand All @@ -68,9 +68,9 @@ to start. If you installed BlockMap through a package manager, search for it in
If you want to use BlockMap through the command line without,

# For general usage help
java -jar BlockMap-cli-2.2.0.jar help
java -jar BlockMap-cli-2.2.1.jar help
# For help about rendering worlds to a folder
java -jar BlockMap-cli-2.2.0.jar help render
java -jar BlockMap-cli-2.2.1.jar help render

will get you started. On Linux even with colors!

Expand Down Expand Up @@ -131,6 +131,7 @@ If you want to create a release jar and run it, use `./gradlew :BlockMap-gui:run
- Regenerate all resources (see above)
- If something in the UI changed, regenerate the screenshots
- If some dependencies changed: Run `./gradlew licenseReport` and copy the generated JSON file to `./BlockMap-gui/src/main/resources/de/piegames/blockmap/gui/standalone/about/licenseReport.json`
- Commit the changes as `Version bump: $VESRION`. Add a tag with the version. Don't forget to push the tag as well! (`git push --tags`)
- Generate the release binaries (need to be called on each target platform)
- This will create two executable fat (=containing all needed dependencies) jars in `./BlockMap-{gui,cli}/build/libs/fat/`.
- Release on GitHub
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {
apply plugin: "com.github.ben-manes.versions"

allprojects {
version = '2.2.0'
version = '2.2.1'

repositories {
jcenter()
Expand Down
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## Version 2.2.1

### Changes

- Minor changes to the resource generation—CI is now slightly faster and should fail less often
- Updated screenshots in README

### Bug fixes

- Minor improvements in the open dialog
- Fixed pins for multiple maps on the exact same place

## Version 2.2.0

### Changes
Expand Down

0 comments on commit 0171d5e

Please sign in to comment.