Skip to content

Commit

Permalink
Merge pull request #42 from ParkerM/develop
Browse files Browse the repository at this point in the history
v1.0.0
  • Loading branch information
ParkerM authored May 21, 2021
2 parents 6880597 + 64a87ec commit cabe245
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.0.0](https://github.com/ParkerM/close-tabs-to-left/compare/v0.1.1...v1.0.0) (2021-05-21)


### ⚠ BREAKING CHANGES

* restrict max firefox version to avoid functional overlap

### Features

* restrict max firefox version to avoid functional overlap ([1465a5f](https://github.com/ParkerM/close-tabs-to-left/commit/1465a5f10e38472e5da9e054f12e34d5ea6cb0b8))

## [0.1.1](https://github.com/ParkerM/close-tabs-to-left/compare/v0.0.4...v0.1.1) (2021-05-21)

**Note:** Dependency upgrades and first "minor" release
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

Firefox extension that adds "Close Tabs to the Left" context menu entry.

# ⚠ Notice:
As a result of "Close Tabs to the Left" becoming standard functionality in Firefox version 88,
this extension will be restricted to Firefox versions 87 and below.

## Building
See [package.json](./package.json) for more info on the yarn scripts mentioned here.

Expand Down
5 changes: 3 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"default_locale": "en",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "0.1.1",
"version": "1.0.0",
"homepage_url": "https://github.com/ParkerM/close-tabs-to-left",
"developer": {
"name": "Parker Mauney",
Expand All @@ -12,7 +12,8 @@
"browser_specific_settings": {
"gecko": {
"id": "closetabstotheleft@parkerm.github.io",
"strict_min_version": "58.0a1"
"strict_min_version": "58.0a1",
"strict_max_version": "87.*"
}
},
"background": {
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": "close-tabs-to-left",
"version": "0.1.1",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": "github:ParkerM/close-tabs-to-left",
Expand Down

0 comments on commit cabe245

Please sign in to comment.