Skip to content

Commit ad229ab

Browse files
committed
Update version number for v2.1.2 release
Update CHANGELOG Update contribution guidelines and issue template
1 parent 3c93448 commit ad229ab

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

.github/CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,15 @@ GnuCash Android is built by people like you! Please [join us](https://github.com
55
* You can maintain your stable installation of GnuCash and test with another installation.
66
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
77
* The latest changes are in the `develop` branch.
8+
* Always rebase develop before working on a fix or issuing a pull request
89
* The master branch contains only stable releases.
910
* Pull requests to the `master` branch will be rejected.
11+
* The `hotfix/patches` branch is reserved for very small fixes to the current release
12+
* This branch may diverge significantly from the `develop` branch
13+
* When working on a hotfix, always rebase and start off the `origin/hotfix/patches` branch
14+
* Examples of such are typos, translation updates, critical bugs (e.g. cannot save transactions)
15+
* Any bigger changes should be made to develop
16+
1017
* Make a new branch for every feature you're working on.
1118
* Try to make clean commits that are easily readable (including descriptive commit messages!)
1219
* Test before you push make sure all test pass on your machine.

.github/ISSUE_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1+
#### Steps to reproduce the behaviour
2+
1. <!-- List the detail steps to reproduce the problem here -->
3+
14
#### Expected behaviour
25

36

47
#### Actual behaviour
58

69

7-
#### Steps to reproduce the behaviour
8-
1. <!-- List the detail steps to reproduce the problem here -->
9-
1010
#### Software specifications
1111
* GnuCash Android version:
1212
* System Android version:

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
Change Log
22
===============================================================================
3+
Version 2.1.2 *(2016-09-21)*
4+
----------------------------
5+
* Fixed: Scheduled exports always run daily (no matter the actual schedule)
6+
* Fixed: New transactions cannot be saved in single-entry mode
7+
* Fixed: ownCloud connect success messages displayed in red (now green)
8+
* Fixed: Crash when scheduled action service cannot find transaction in db
9+
* Improved: German and Brazilian Portuguese translations
10+
311
Version 2.1.1 *(2016-09-05)*
412
----------------------------
513
* Fixed: Bug cause crash during start-up for devices with no scheduled transactions

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'io.fabric'
77

88
def versionMajor = 2
99
def versionMinor = 1
10-
def versionPatch = 1
10+
def versionPatch = 2
1111
def versionBuild = 0
1212

1313
def buildTime() {

0 commit comments

Comments
 (0)