Skip to content

Commit

Permalink
Upgrade to 1.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
earrietadev committed Aug 8, 2024
1 parent 07b1149 commit 35ecc09
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.24.0] - 2024-08-07
### Add
- Upgrade Stellar SDK to 12.2.0
- Start the SEP-0043 support, still missing the signAuthEntry logic
- Show a simulation of the balance changes when interacting with Smart Contracts (only showing native and trustlines balances updates)

## [1.23.0] - 2024-06-24
### Add
- Add support to KeyStone wallets, currently only handling hash signing.
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 54
versionName "1.23.0"
versionName "1.24.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
2 changes: 1 addition & 1 deletion ios/App/App/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.23.0</string>
<string>1.24.0</string>
<key>CFBundleVersion</key>
<string>43</string>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xbull",
"version": "1.23.0",
"version": "1.24.0",
"scripts": {
"ng": "./node_modules/.bin/ng",
"start": "./node_modules/.bin/ng serve",
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.extension.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ export const environment = {
networkPassphrase: Networks.TESTNET,
canRemove: false,
}],
version: '1.23.0',
version: '1.24.0',
};
2 changes: 1 addition & 1 deletion src/environments/environment.extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const environment = {
networkPassphrase: Networks.TESTNET,
canRemove: false,
}],
version: '1.23.0',
version: '1.24.0',
};

/*
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.mobile.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export const environment = {
networkPassphrase: Networks.PUBLIC,
canRemove: true,
}],
version: '1.23.0',
version: '1.24.0',
};
2 changes: 1 addition & 1 deletion src/environments/environment.mobile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export const environment = {
networkPassphrase: Networks.PUBLIC,
canRemove: true,
}],
version: '1.23.0'
version: '1.24.0'
};
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export const environment = {
networkPassphrase: Networks.PUBLIC,
canRemove: true,
}],
version: '1.23.0'
version: '1.24.0'
};
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const environment = {
networkPassphrase: Networks.PUBLIC,
canRemove: true,
}],
version: '1.23.0'
version: '1.24.0'
};

/*
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.v2.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "xBull Wallet",
"version": "1.23.0",
"version": "1.24.0",
"description": "A powerful but easy to use Stellar network wallet.",
"homepage_url": "https://xbull.app",
"icons": {
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.v3.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "xBull Wallet",
"version": "1.23.0",
"version": "1.24.0",
"description": "A powerful but easy to use Stellar network wallet.",
"homepage_url": "https://xbull.app",
"icons": {
Expand Down

0 comments on commit 35ecc09

Please sign in to comment.