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

chore/bump-v0.28.0 #571

Merged
merged 1 commit into from
Apr 2, 2024
Merged
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 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
Expand Up @@ -22,7 +22,7 @@
"productName": "Hathor Wallet",
"description": "Light wallet for Hathor Network",
"author": "Hathor Labs <[email protected]> (https://hathor.network/)",
"version": "0.28.0-rc1",
"version": "0.28.0",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
Expand Down
2 changes: 1 addition & 1 deletion public/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if (process.platform === 'darwin') {
}

const appName = 'Hathor Wallet';
const walletVersion = '0.28.0-rc1';
const walletVersion = '0.28.0';

const debugMode = (
process.argv.indexOf('--unsafe-mode') >= 0 &&
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const WALLET_HISTORY_COUNT = 10;
/**
* Wallet version
*/
export const VERSION = '0.28.0-rc1';
export const VERSION = '0.28.0';

/**
* Before this version the data in localStorage from the wallet is not compatible
Expand Down
Loading