Skip to content

Commit

Permalink
Release 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Aug 28, 2022
1 parent e1eb4a4 commit 56deaf8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 4.4.0

### Features

- Print Preact version that rendered the selected component in sidebar (#423, thanks @marvinhagemeister)
- Design: Tweak spacing and alignment (#421, #422, #424, #426, thanks @marvinhagemeister)

### Bug Fixes

- Fix incorrect highlight bounds checks (#420, thanks @marvinhagemeister)
- Add missing changelog entry in `CHANGELOG.md` for `v4.3.3` (#425, thanks @marvinhagemeister)

## 4.3.3

### Bug Fixes
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": "preact-devtools",
"version": "4.3.3",
"version": "4.4.0",
"description": "Preact Devtools Extension",
"main": "dist/preact-devtools.js",
"module": "dist/preact-devtools.module.js",
Expand Down
2 changes: 1 addition & 1 deletion src/shells/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Chrome",
"version": "4.3.3",
"version": "4.4.0",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down
2 changes: 1 addition & 1 deletion src/shells/edge/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Microsoft Edge",
"version": "4.3.3",
"version": "4.4.0",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down
2 changes: 1 addition & 1 deletion src/shells/firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Firefox",
"version": "4.3.3",
"version": "4.4.0",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down

0 comments on commit 56deaf8

Please sign in to comment.