Skip to content

Commit

Permalink
chore: bump to v0.9.0 and upgrade wallet-lib to v0.27.0 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
luislhl authored Nov 12, 2021
1 parent 1e74aff commit eea3cee
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 42 deletions.
11 changes: 9 additions & 2 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Bumping up the version
## Bumping up the version

The following files must be updated: `src/constants.js` and `package.json`.

Expand All @@ -8,4 +8,11 @@ In the `package.json`, the field `version` must be updated.

In case this new version depends on a new API version, the field `MIN_API_VERSION` must also be updated on `src/constants.js`.

Create a git tag and a new release on GitHub.
Create a git tag and a new release on GitHub.

## Deploying
Deploys are automated using Github Actions.

To deploy to the `testnet` website, simply commit to the `master` branch.

To deploy to the `mainnet` website, create a release in Github using a tag in the format `v0.0.0`. You should use the same version that you updated in the files in the previous section.
55 changes: 18 additions & 37 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "hathor-admin",
"version": "0.8.1",
"version": "0.9.0",
"private": true,
"dependencies": {
"@hathor/wallet-lib": "^0.23.1",
"@hathor/wallet-lib": "^0.27.0",
"axios": "^0.17.1",
"bootstrap": "^4.0.0",
"d3-selection": "^1.3.2",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const TESTNET_GENESIS_TX = [

export const DECIMAL_PLACES = 2;

export const VERSION = '0.8.1';
export const VERSION = '0.9.0';

export const MIN_API_VERSION = '0.33.0';

Expand Down

0 comments on commit eea3cee

Please sign in to comment.