diff --git a/CHANGELOG.md b/CHANGELOG.md index d873370a..16799a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [1.6.2](https://github.com/hypertrons/hypertrons-crx/compare/v1.6.1...v1.6.2) (2022-07-12) + + +### Bug Fixes + +* fatal issue 382 ([#396](https://github.com/hypertrons/hypertrons-crx/issues/396)) ([31688ff](https://github.com/hypertrons/hypertrons-crx/commit/31688ff4c9470d2c14fabb20d1c3c3bc2ba28612)) +* using dark theme in day time or vice verse is not considered ([#401](https://github.com/hypertrons/hypertrons-crx/issues/401)) ([1771cc7](https://github.com/hypertrons/hypertrons-crx/commit/1771cc7e347ff2b25913e0f6ef51a55709fd54b7)) + + + ## [1.6.1](https://github.com/hypertrons/hypertrons-crx/compare/v1.6.0...v1.6.1) (2022-07-07) diff --git a/package.json b/package.json index c7bf5411..d29b2b43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hypercrx", - "version": "1.6.1", + "version": "1.6.2", "type": "module", "private": true, "description": "Hypertrons Chromium Extension", diff --git a/publish/update_information.json b/publish/update_information.json index 5cfed0a8..bef80382 100644 --- a/publish/update_information.json +++ b/publish/update_information.json @@ -1,14 +1,14 @@ { "chrome": { - "latest_version": "1.6.1", + "latest_version": "1.6.2", "url": "https://chrome.google.com/webstore/detail/hypercrx/ijchfbpdgeljmhnhokmekkecpbdkgabc" }, "edge": { - "latest_version": "1.6.1", + "latest_version": "1.6.2", "url": "https://microsoftedge.microsoft.com/addons/detail/hypercrx/lbbajaehiibofpconjgdjonmkidpcome" }, "develop": { - "latest_version": "1.6.1", + "latest_version": "1.6.2", "url": "https://github.com/hypertrons/hypertrons-crx/releases" } } diff --git a/src/mock/background.data.ts b/src/mock/background.data.ts index c0aec69e..a75d77df 100644 --- a/src/mock/background.data.ts +++ b/src/mock/background.data.ts @@ -1,14 +1,14 @@ export const updateInformation = { chrome: { - latest_version: '1.6.1', + latest_version: '1.6.2', url: 'https://github.com/hypertrons/hypertrons-crx/releases', }, edge: { - latest_version: '1.6.1', + latest_version: '1.6.2', url: 'https://github.com/hypertrons/hypertrons-crx/releases', }, develop: { - latest_version: '1.6.1', + latest_version: '1.6.2', url: 'https://github.com/hypertrons/hypertrons-crx/releases', }, };