Skip to content

Commit

Permalink
Update version number for v2.1.2 release
Browse files Browse the repository at this point in the history
Update CHANGELOG
Update contribution guidelines and issue template
  • Loading branch information
codinguser committed Sep 19, 2016
1 parent 3c93448 commit ad229ab
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@ GnuCash Android is built by people like you! Please [join us](https://github.com
* You can maintain your stable installation of GnuCash and test with another installation.
The two instances of GnuCash Android will live side-by-side on your device and not affect each other. You can install the development version by executing `gradle installDD` inside the root project directory
* The latest changes are in the `develop` branch.
* Always rebase develop before working on a fix or issuing a pull request
* The master branch contains only stable releases.
* Pull requests to the `master` branch will be rejected.
* The `hotfix/patches` branch is reserved for very small fixes to the current release
* This branch may diverge significantly from the `develop` branch
* When working on a hotfix, always rebase and start off the `origin/hotfix/patches` branch
* Examples of such are typos, translation updates, critical bugs (e.g. cannot save transactions)
* Any bigger changes should be made to develop

* Make a new branch for every feature you're working on.
* Try to make clean commits that are easily readable (including descriptive commit messages!)
* Test before you push make sure all test pass on your machine.
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#### Steps to reproduce the behaviour
1. <!-- List the detail steps to reproduce the problem here -->

#### Expected behaviour


#### Actual behaviour


#### Steps to reproduce the behaviour
1. <!-- List the detail steps to reproduce the problem here -->

#### Software specifications
* GnuCash Android version:
* System Android version:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
Change Log
===============================================================================
Version 2.1.2 *(2016-09-21)*
----------------------------
* Fixed: Scheduled exports always run daily (no matter the actual schedule)
* Fixed: New transactions cannot be saved in single-entry mode
* Fixed: ownCloud connect success messages displayed in red (now green)
* Fixed: Crash when scheduled action service cannot find transaction in db
* Improved: German and Brazilian Portuguese translations

Version 2.1.1 *(2016-09-05)*
----------------------------
* Fixed: Bug cause crash during start-up for devices with no scheduled transactions
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'io.fabric'

def versionMajor = 2
def versionMinor = 1
def versionPatch = 1
def versionPatch = 2
def versionBuild = 0

def buildTime() {
Expand Down

0 comments on commit ad229ab

Please sign in to comment.