Skip to content

Commit

Permalink
Release 1.0.0 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Radiokot authored Apr 25, 2024
1 parent 675a561 commit 8d7d785
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 19 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/firebase_internal_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ name: Distribute builds for internal testing through Firebase

on:
push:
# Run for QA builds and release candidates.
# Run for QA builds.
tags:
- "*-qa.*"
- "*-rc.*"
- '[0-9]+.[0-9]+.[0-9]+qa.[0-9]+'
workflow_dispatch:

env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Build release packages for Google Play and standalone publishing

on:
push:
# Run only for releases: ignore versions with meta part (1.2.3-qa.1, 3.4.5-rc.2, etc).
# Run for releases and release candidates.
tags:
- "*.*.*"
- "!*-*"
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+rc.[0-9]+'
workflow_dispatch:

env:
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## [Unreleased]
## [1.0.0] - 2022-04-24

### Added
- Setting up and updating validator pool commission rates
- Support of WalletConnect CCD transfer requests
- Support for WalletConnect CCD transfer requests
- Ability to see full details of a WalletConnect transaction to sign
- Ability to see full details of a Spaceseven transaction to sign
- Support for WalletConnect verifiable presentation requests (for identity proofs)
Expand Down Expand Up @@ -42,3 +42,4 @@
- CIS-2 tokens with corrupted or missing metadata can no longer be added

[Unreleased]: https://github.com/Concordium/cryptox-android/compare/0.6.1-qa.5...HEAD
[1.0.0]: https://github.com/Concordium/cryptox-android/compare/0.6.1-qa.5...1.0.0
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,19 @@ No Spaceseven instance
- Mainnet (`mainnet`) – Public Concordium network, real funds and identities. Spaceseven production

### Distribution for internal testing
Builds for internal testing tagged as QA (`-qa.X`) or release candidate (`-rc.X`) are assembled and distributed through Firebase App distribution by the [corresponding pipeline](.github/workflows/firebase_internal_testing.yml).
Builds for internal testing tagged as QA (`-qa.X`) are assembled and distributed through Firebase App distribution by the [corresponding pipeline](.github/workflows/firebase_internal_testing.yml).
Update the version in `main`, tag the commit with the version name and push the changes.

[Track the Internal testing pipeline](https://github.com/Concordium/cryptox-android/deployments/Internal%20testing)

APKs can be downloaded from the GitHub workflow artifacts or from the Firebase console.

### Building for release
Builds for releases tagged with semver version (`X.Y.Z`) are assembled by the [corresponding pipeline](.github/workflows/release_build.yml).
Builds for releases tagged with semver version (`X.Y.Z`) or release candidate (`-rc.X`)
are assembled by the [corresponding pipeline](.github/workflows/release_build.yml).
Update the version in `main`, tag the commit with the version name and push the changes.

[Track the Release pipeline](https://github.com/Concordium/cryptox-android/deployments/Releases)

APKs signed for standalone distribution and bundles signed with the Google Play upload key can be downloaded from the GitHub workflow artifacts.
APKs signed for standalone distribution and bundles signed with the Google Play upload key
can be downloaded from the GitHub workflow artifacts.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ configurableSigningProperties.load(new FileInputStream(
android {
// This project uses semantic versioning
// https://semver.org/
def versionMajor = 0
def versionMinor = 6
def versionPatch = 1
def versionMeta = "-qa.10"
def versionCodeIncremental = 1360
def versionMajor = 1
def versionMinor = 0
def versionPatch = 0
def versionMeta = ""
def versionCodeIncremental = 1372

compileSdkVersion 34

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_create_nft.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
android:textSize="52sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/divider"
app:layout_constraintTop_toTopOf="parent"
tools:text="4000" />

<TextView
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -860,14 +860,14 @@
<string name="baker_registration_confirmation_update_stake_update">Account to make validator update</string>
<string name="baker_registration_confirmation_update_stake_update_decrease_explain">You are about to submit a transaction that lowers your validator stake. Lowering your stake has a cool-down period, meaning it will not take effect immediately.\n\nThe validator cannot be removed and the stake cannot be changed until the cool-down is over.</string>

<string name="baker_update_intro_flow_title">Baking</string>
<string name="baker_update_intro_flow_title">Validating</string>
<string name="baker_update_intro_subtitle1">Updating validator settings</string>
<string name="baker_update_intro_subtitle2">Update validator stake</string>
<string name="baker_update_intro_subtitle3" tools:ignore="TypographyFractions">Update pool settings (1/2)</string>
<string name="baker_update_intro_subtitle4">Update pool settings (2/2)</string>
<string name="baker_update_intro_subtitle5">Update validator keys</string>

<string name="baker_remove_intro_flow_title">Baking</string>
<string name="baker_remove_intro_flow_title">Validating</string>
<string name="baker_remove_intro_subtitle1">Stop validating</string>

<string name="update_baker_settings_menu_update_baker_stake">Update validator stake</string>
Expand Down

0 comments on commit 8d7d785

Please sign in to comment.