Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Flexa version bump #1684

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ ZXING_VERSION=3.5.3
ZIP_321_VERSION = 0.0.6
ZCASH_BIP39_VERSION=1.0.8

FLEXA_VERSION=1.0.5
FLEXA_VERSION=1.0.6

# WARNING: Ensure a non-snapshot version is used before releasing to production
ZCASH_SDK_VERSION=2.2.5-SNAPSHOT
Expand Down
Binary file removed maven/com/flexa/core/1.0.5/core-1.0.5.aar
Binary file not shown.
Binary file added maven/com/flexa/core/1.0.6/core-1.0.6.aar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.flexa</groupId>
<artifactId>core</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<packaging>aar</packaging>
<dependencies>
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions maven/com/flexa/core/maven-metadata-local.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<groupId>com.flexa</groupId>
<artifactId>core</artifactId>
<versioning>
<latest>1.0.5</latest>
<release>1.0.5</release>
<latest>1.0.6</latest>
<release>1.0.6</release>
<versions>
<version>1.0.5</version>
<version>1.0.6</version>
</versions>
<lastUpdated>20241030092850</lastUpdated>
<lastUpdated>20241115103837</lastUpdated>
</versioning>
</metadata>
Binary file removed maven/com/flexa/spend/1.0.5/spend-1.0.5.aar
Binary file not shown.
Binary file added maven/com/flexa/spend/1.0.6/spend-1.0.6.aar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.flexa</groupId>
<artifactId>spend</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<packaging>aar</packaging>
<dependencies>
<dependency>
<groupId>com.flexa</groupId>
<artifactId>core</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>androidx.core</groupId>
Expand Down Expand Up @@ -99,7 +99,7 @@
<dependency>
<groupId>com.flexa</groupId>
<artifactId>core</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</dependency>
</dependencies>
</project>
8 changes: 4 additions & 4 deletions maven/com/flexa/spend/maven-metadata-local.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<groupId>com.flexa</groupId>
<artifactId>spend</artifactId>
<versioning>
<latest>1.0.5</latest>
<release>1.0.5</release>
<latest>1.0.6</latest>
<release>1.0.6</release>
<versions>
<version>1.0.5</version>
<version>1.0.6</version>
</versions>
<lastUpdated>20241030092854</lastUpdated>
<lastUpdated>20241115103856</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ object ConfigurationEntries {
*/
val IS_RESCAN_ENABLED = BooleanConfigurationEntry(ConfigKey("is_rescan_enabled"), true)

val IS_FLEXA_AVAILABLE = BooleanConfigurationEntry(ConfigKey("is_flexa_available"), false)
val IS_FLEXA_AVAILABLE = BooleanConfigurationEntry(ConfigKey("is_flexa_available"), true)
}
Loading