Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
version: 8.2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mroz22 committed Dec 5, 2022
1 parent 3f6b5f4 commit e92440e
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 8.2.12

- Deprecation: update readme and add a console.log with deprecation warning
- Update @trezor/connect-common (fw 2.5.3)

# 8.2.11

- Update @trezor/connect-common (fw 1.11.2 & 2.5.2)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Trezor Connect v8 is under maintenance mode, all new development efforts are foc
## New NPM package
NPM package [trezor-connect](https://www.npmjs.com/package/trezor-connect) will not receive any v9 changes. v9 changes are only available at NPM package [@trezor/connect](https://www.npmjs.com/package/@trezor/connect).

# Trezor Connect API version 8.2.11
# Trezor Connect API version 8.2.12
[![Build Status](https://github.com/trezor/connect/actions/workflows/tests.yml/badge.svg)](https://github.com/trezor/connect/actions/workflows/tests.yml)
[![NPM](https://img.shields.io/npm/v/trezor-connect.svg)](https://www.npmjs.org/package/trezor-connect)
[![Known Vulnerabilities](https://snyk.io/test/github/trezor/connect/badge.svg?targetFile=package.json)](https://snyk.io/test/github/trezor/connect?targetFile=package.json)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trezor-connect",
"version": "8.2.11",
"version": "8.2.12",
"author": "Trezor <info@trezor.io>",
"homepage": "https://github.com/trezor/connect",
"description": "High-level javascript interface for Trezor hardware wallet.",
Expand Down
2 changes: 1 addition & 1 deletion src/js/data/ConnectSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { Manifest, ConnectSettings } from '../types';
* It could be changed by passing values into TrezorConnect.init(...) method
*/

const VERSION = '8.2.11';
const VERSION = '8.2.12';
const versionN = VERSION.split('.').map(s => parseInt(s, 10));
// const DIRECTORY = `${ versionN[0] }${ (versionN[1] > 0 ? `.${versionN[1]}` : '') }/`;
const DIRECTORY = `${versionN[0]}/`;
Expand Down
2 changes: 1 addition & 1 deletion src/js/plugins/webextension/trezor-usb-permissions.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const VERSION = '8.2.11';
const VERSION = '8.2.12';
const versionN = VERSION.split('.').map(s => parseInt(s, 10));
// const DIRECTORY = `${ versionN[0] }${ (versionN[1] > 0 ? `.${versionN[1]}` : '') }/`;
const DIRECTORY = `${versionN[0]}/`;
Expand Down

0 comments on commit e92440e

Please sign in to comment.