Skip to content
This repository has been archived by the owner on Oct 29, 2022. It is now read-only.

Commit

Permalink
Increased version number
Browse files Browse the repository at this point in the history
  • Loading branch information
alebianco committed Jun 4, 2014
1 parent 5b2e759 commit 33ca637
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/build.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project properties
project.name = NativeGATracker
version.num = 2.0.7rc1
version.num = 2.0.7rc2
project.name.versioned=${project.name}-v${version.num}

extension.descriptor = ${basedir}/build/extension.${platform}.xml
Expand Down
2 changes: 1 addition & 1 deletion build/extension.mac.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Google Analytics AIR Extension</name>
<description>Allow mobile AIR applications to communicante tracking informations to the Google Analytics platform.</description>
<copyright>Copyright (c) 2011 - 2013 Alessandro Bianco</copyright>
<versionNumber>2.0.7</versionNumber>
<versionNumber>2.0.72</versionNumber>
<platforms>
<platform name="Android-ARM">
<applicationDeployment>
Expand Down
2 changes: 1 addition & 1 deletion build/extension.win.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Google Analytics AIR Extension</name>
<description>Allow mobile AIR applications to communicante tracking informations to the Google Analytics platform.</description>
<copyright>Copyright (c) 2011 - 2013 Alessandro Bianco</copyright>
<versionNumber>2.0.7</versionNumber>
<versionNumber>2.0.72</versionNumber>
<platforms>
<platform name="Android-ARM">
<applicationDeployment>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public final class Analytics implements IAnalytics {
* @inheritDoc
*/
public function get version():String {
return "ANE-Google-Analytics v2.0.7rc1";
return "ANE-Google-Analytics v2.0.7rc2";
}
/**
* @inheritDoc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

public class GAContext extends FREContext {

public static final String VERSION = "2.0.7rc1";
public static final String VERSION = "2.0.7rc2";
public static final String PRODUCT = "ANE-Google-Analytics";

@Override
Expand Down
2 changes: 1 addition & 1 deletion source/ios/NativeGATracker/Functions/GetVersion.m
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ @implementation GetVersion
FREObject result = NULL;

@try {
result = [FREConversionUtil fromString:@"ANE-Google-Analytics v2.0.7rc1"];
result = [FREConversionUtil fromString:@"ANE-Google-Analytics v2.0.7rc2"];
}
@catch (NSException *exception) {
logEvent(context, kFatal, @"Unable to create the return value. [Exception:(type:%@, method:%s)].", [exception name], __FUNCTION__);
Expand Down

0 comments on commit 33ca637

Please sign in to comment.