Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
vorujack committed Aug 20, 2024
1 parent 836e97d commit ed466ae
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,20 @@ jobs:
uses: android-actions/setup-android@v3

- name: Grant execute permission for gradlew
run: chmod +x .apps/wallet/android/gradlew
run: chmod +x ./apps/wallet/android/gradlew

- name: Update AndroidManifest.xml
uses: damienaicheh/update-android-version-manifest-action@v1.0.0
with:
android-manifest-path: '.apps/wallet/android/app/src/main/AndroidManifest.xml'
android-manifest-path: './apps/wallet/android/app/src/main/AndroidManifest.xml'
version-code: ${{ env.NUMBER_OF_COMMITS }}
version-name: '${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}${{ env.PRE_RELEASE }}'
print-file: true

- name: Update gradle version for Android
uses: damienaicheh/update-android-version-gradle-action@v1.0.0
with:
build-gradle-path: '.apps/wallet/android/app/build.gradle'
build-gradle-path: './apps/wallet/android/app/build.gradle'
version-code: ${{ env.NUMBER_OF_COMMITS }}
version-name: '${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}${{ env.PRE_RELEASE }}'
print-file: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-desktop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
desktop:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-14]
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
include:
- os: ubuntu-latest
platform: linux
extension: AppImage
- os: windows-latest
platform: Windows
extension: exe
- os: macos-latest
- os: macos-13
platform: MacOS
extension: dmg
- os: macos-14
- os: macos-latest
platform: MacOS
extension: dmg
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -61,12 +61,12 @@ jobs:
run: rm apps/wallet/electron/assets/appIcon.icns

- name: Build Electron
working-directory: .apps/wallet/electron
working-directory: ./apps/wallet/electron
run: npm i; npm run electron:make

- name: Upload Executable File to release
uses: softprops/action-gh-release@v1
with:
files: electron/dist/minotaur*.${{ matrix.extension }}
files: ./apps/wallet/electron/dist/minotaur*.${{ matrix.extension }}
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
13 changes: 13 additions & 0 deletions apps/wallet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# minotaur-wallet

## 2.2.0

### Minor Changes

- Add Box Consolidation dApp

### Patch Changes

- Store Encrypted Mnemonic for each wallet.
- Explorer does not return the order of transactions correctly. We implemented a method to neutralize its effect.
- Fix Icon size
2 changes: 1 addition & 1 deletion apps/wallet/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "minotaur-wallet",
"private": true,
"version": "2.1.0",
"version": "2.2.0",
"type": "module",
"scripts": {
"postinstall": "patch-package",
Expand Down

0 comments on commit ed466ae

Please sign in to comment.