Skip to content

Commit 45607e6

Browse files
Merge pull request #224 from preactjs/release-1.0.0
2 parents 939e377 + 9199dcb commit 45607e6

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## 1.0.0
4+
5+
Bug Fixes:
6+
7+
- Change default connection message to be more clear (#223, thanks @marvinhagemeister)
8+
- Fix `undefined` component with prefresh (#222, thanks @marvinhagemeister)
9+
- Fix `options._hook` arguments not forwarded (#221, thanks @marvinhagemeister)
10+
- Improve Commit-Timeline display (#219, thanks @marvinhagemeister)
11+
- Fix incorrect highlight offset with margins (#218, thanks @marvinhagemeister)
12+
13+
Maintenance:
14+
15+
- Upgrade all dependencies (#220, thanks @marvinhagemeister)
16+
- Fix actions workflow not updating version (#214, thanks @marvinhagemeister)
17+
318
## 0.7.0
419

520
This release is packed with features! The star of the show is the "highlight updates" option in the settings page, which when enabled will visualise updates via on overlay on top of the page.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "preact-devtools",
3-
"version": "0.7.0",
3+
"version": "1.0.0",
44
"description": "Preact Devtools Extension",
55
"main": "dist/preact-devtools.js",
66
"module": "dist/preact-devtools.module.js",

src/shells/chrome/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Preact Developer Tools",
44
"description": "Adds debugging tools for Preact to Chrome",
5-
"version": "0.7.0",
5+
"version": "1.0.0",
66
"devtools_page": "panel/empty-panel.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

src/shells/edge/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Preact Developer Tools",
44
"description": "Adds debugging tools for Preact to Microsoft Edge",
5-
"version": "0.7.0",
5+
"version": "1.0.0",
66
"devtools_page": "panel/empty-panel.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

src/shells/firefox/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Preact Developer Tools",
44
"description": "Adds debugging tools for Preact to Chrome",
5-
"version": "0.7.0",
5+
"version": "1.0.0",
66
"devtools_page": "panel/empty-panel.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

0 commit comments

Comments
 (0)