Skip to content

Commit 0c6b6fe

Browse files
authored
Merge pull request #319 from crypto-com/v0.1.0-ChangeLog
V0.1.0 change log release - Lots of pre mainnet release improvements were added in this release
2 parents 82e9d74 + d59aeda commit 0c6b6fe

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file.
66

77
*Released*
88

9+
10+
## [v0.1.0] - 2021-03-24
11+
12+
### Additions
13+
- First release with mainnet configuration support
14+
- Added capability to customize gas limit and network fee on transactions
15+
- Introduced a capability to specify address index for Ledger wallet creations
16+
- Added support for re-delegation in the wallet
17+
918
## [v0.0.25] - 2021-03-12
1019

1120
### Bug Fixes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chain-desktop-wallet",
3-
"version": "0.0.25",
3+
"version": "0.1.0",
44
"description": "Crypto.com Chain Desktop Wallet App",
55
"repository": "github:crypto-com/chain-desktop-wallet",
66
"author": "Crypto.org <[email protected]>",

src/layouts/home/home.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import IconWallet from '../../svg/IconWallet';
2525
import ModalPopup from '../../components/ModalPopup/ModalPopup';
2626
import { walletService } from '../../service/WalletService';
2727
import { Session } from '../../models/Session';
28+
import packageJson from '../../../package.json';
2829

2930
interface HomeLayoutProps {
3031
children?: React.ReactNode;
@@ -229,12 +230,14 @@ function HomeLayout(props: HomeLayoutProps) {
229230
);
230231
};
231232

233+
const buildVersion = packageJson.version;
234+
232235
return (
233236
<main className="home-layout">
234237
<Layout>
235238
<Sider>
236239
<div className="logo" />
237-
<div className="version">SAMPLE WALLET v0.0.1</div>
240+
<div className="version">SAMPLE WALLET v{buildVersion}</div>
238241
<HomeMenu />
239242
<Dropdown
240243
overlay={<WalletMenu />}

0 commit comments

Comments
 (0)