diff --git a/CHANGELOG.md b/CHANGELOG.md index fdff73f..3d58c02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.2 +Published by **[blockcoders](https://github.com/blockcoders)** on **2022/11/21** +- [#8](https://github.com/blockcoders/ink-substrate-explorer-frontend/pull/8) Feature/add switch language +- [#7](https://github.com/blockcoders/ink-substrate-explorer-frontend/pull/6) fix tests + ## 1.0.1 Published by **[blockcoders](https://github.com/blockcoders)** on **2022/11/17** - [#6](https://github.com/blockcoders/ink-substrate-explorer-frontend/pull/6) Fix dependencies diff --git a/README-es.md b/README-es.md index 8379cd4..ad1cd36 100644 --- a/README-es.md +++ b/README-es.md @@ -251,7 +251,7 @@ query { ```graphql { "data": { - "version": "v1.0.1" + "version": "v1.0.2" } } ``` diff --git a/README.md b/README.md index a39adc1..1456821 100644 --- a/README.md +++ b/README.md @@ -253,7 +253,7 @@ query { ```graphql { "data": { - "version": "v1.0.1" + "version": "v1.0.2" } } ``` diff --git a/__test__/components/infoCard.test.tsx b/__test__/components/infoCard.test.tsx index 86a3220..832a509 100644 --- a/__test__/components/infoCard.test.tsx +++ b/__test__/components/infoCard.test.tsx @@ -5,7 +5,7 @@ import InfoCard from '../../components/InfoCard/InfoCard' import { getTimeAgo } from '../../lib/utils' const price = 30 -const version = '1.0.1' +const version = '1.0.2' jest.mock('../../generated', () => ({ useGetLastBlockQuery: jest.fn(() => { diff --git a/package.json b/package.json index 73421c9..4dbfc55 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ink-substrate-explorer-frontend", - "version": "1.0.1", + "version": "1.0.2", "description": "Ink Explorer is an application that provides Ink contracts related information on Substrate based blockchains.", "author": "Blockcoders ", "license": "MIT",