Skip to content

Commit

Permalink
Updated version to 1.9.0-beta1.
Browse files Browse the repository at this point in the history
  • Loading branch information
zamojski committed May 7, 2016
1 parent a605f05 commit cd25b4d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// each of the version numbers must be 0-99
def versionMajor = 1 // major releases
def versionMinor = 8 // minor feature releases
def versionMinor = 9 // minor feature releases
def versionPatch = 0 // hot fixes
def versionBuild = 2 // build version
def versionBuild = 1 // build version

// Double check the versioning
for (versionPart in [versionPatch, versionMinor, versionMajor, versionBuild]) {
Expand All @@ -22,7 +22,7 @@ android {
minSdkVersion 14
targetSdkVersion 22
versionCode versionMajor * 1000000 + versionMinor * 10000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}.${versionBuild}"
versionName "${versionMajor}.${versionMinor}.${versionPatch}-beta${versionBuild}"

Properties props = getCustomProperties()
println 'Defining custom build config fields'
Expand Down
9 changes: 9 additions & 0 deletions app/src/main/res/raw/changelog.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"Entries": [
{
"VersionCode": 1090001,
"Title": "Changes in version 1.9.0-beta1",
"Messages": [
"Added option to notify other apps about new measurements collected. See more in Collector Preferences.",
"Added shortcut to change network type from menu.",
"Changed unknown GPS status to initializing."
]
},
{
"VersionCode": 1080002,
"Title": "Changes in version 1.8.0.2",
Expand Down

0 comments on commit cd25b4d

Please sign in to comment.