Skip to content

Commit

Permalink
Update version numbers for v2.0.2-beta1 release
Browse files Browse the repository at this point in the history
Fix failing test
  • Loading branch information
codinguser committed Nov 16, 2015
1 parent c533d27 commit 0a82713
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Change Log
===============================================================================
Version 2.0.2 *(2015-11-20)*
----------------------------
* Fixed: Exporting to external service does not work in some devices
* Fixed: Bar chart does not display negative amounts
* Fixed: Crash when saving transaction with invalid amount expression
* Fixed: Crashes when importing some GnuCash XML files with select currencies
* Improved: Remember last export destination
* Improved: Set default commodity to the one used by imported file
* Improved: Add support for unlimited fractional digits in commodities
* Improved: Option to select date from which to export transactions

Version 2.0.1 *(2015-11-05)*
----------------------------
* Feature: Menu options for moving/duplicating transactions
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ apply plugin: 'io.fabric'

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

def buildTime() {
def df = new SimpleDateFormat("yyyyMMdd HH:mm 'UTC'")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,9 @@ public void testPrinting(){
String actualOuputDE = mMoneyInEur.formattedString(Locale.GERMANY);
assertThat(actualOuputDE).isEqualTo("15,75 " + symbol);

symbol = Currency.getInstance("EUR").getSymbol(Locale.US);
symbol = Currency.getInstance("EUR").getSymbol(Locale.GERMANY);
String actualOuputUS = mMoneyInEur.formattedString(Locale.US);
assertThat(actualOuputUS).isEqualTo("15.75 " + symbol);
assertThat(actualOuputUS).isEqualTo(symbol + "15.75");

//always prints with 2 decimal places only
Money some = new Money("9.7469", CURRENCY_CODE);
Expand Down

0 comments on commit 0a82713

Please sign in to comment.