diff --git a/CHANGELOG.md b/CHANGELOG.md index d05a9e9..b723420 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.0.0 / 2024-09-05 + +* Select first entry even if create login is shown (#223) +* Update setup error detection and installation help message (#257) +* Upgrade webextension-polyfill to v0.12.0 (#253) +* Upgrade regex-weburl.js to latest version (#255) +* Prepare for upcoming Manifest v3 changes + ## 0.9.0 / 2022-04-08 * Fix a glitch in a German translation diff --git a/RELEASE.md b/RELEASE.md index 2581881..1f938fa 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,7 +1,7 @@ # Release new version - 1. Determine next version 0.x.y. Follow semantic versioning to mark breaking changes. - 2. Create new commit "Release 0.x.y" with updated version in following files: + 1. Determine next version x.y.z. Follow semantic versioning to mark breaking changes. + 2. Create new commit "Release x.y.z" with updated version in following files: - chrome-manifest.json - chrome-manifest-dev.json - firefox-manifest.json @@ -10,7 +10,7 @@ 4. Create pull request for master branch 5. Manually test state of pull request in Firefox and Chrome locally 6. Merge pull request to master - 7. Create new `git tag v0.x.y` for release commit and push tag + 7. Create new `git tag vx.y.z` for release commit and push tag 8. Create new GitHub release and include changelog 9. Ensure you have the `chrome.pem` key for uploading to the Chrome Store 10. Run `make release` to build the release packages diff --git a/manifests/chrome-manifest-dev.json b/manifests/chrome-manifest-dev.json index 2650284..7a12a45 100644 --- a/manifests/chrome-manifest-dev.json +++ b/manifests/chrome-manifest-dev.json @@ -2,7 +2,7 @@ "manifest_version": 2, "short_name": "gopassbridge", "name": "Gopass Bridge", - "version": "0.9.0", + "version": "1.0.0", "description": "__MSG_extensionDescription__", "author": "Martin Hoefling", "homepage_url": "https://github.com/gopasspw/gopassbridge", diff --git a/manifests/chrome-manifest.json b/manifests/chrome-manifest.json index e4d0179..601eca5 100644 --- a/manifests/chrome-manifest.json +++ b/manifests/chrome-manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "short_name": "gopassbridge", "name": "Gopass Bridge", - "version": "0.9.0", + "version": "1.0.0", "description": "__MSG_extensionDescription__", "author": "Martin Hoefling", "homepage_url": "https://github.com/gopasspw/gopassbridge", diff --git a/manifests/firefox-manifest.json b/manifests/firefox-manifest.json index 712da57..3b16fd4 100644 --- a/manifests/firefox-manifest.json +++ b/manifests/firefox-manifest.json @@ -3,7 +3,7 @@ "manifest_version": 2, "short_name": "gopassbridge", "name": "Gopass Bridge", - "version": "0.9.0", + "version": "1.0.0", "description": "__MSG_extensionDescription__", "author": "Martin Hoefling", "homepage_url": "https://github.com/gopasspw/gopassbridge", diff --git a/package.json b/package.json index 66058f5..e3f7de9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gopassbridge", - "version": "0.9.0", + "version": "1.0.0", "description": "Gopass Bridge allows searching and inserting login credentials from the gopass password manager", "main": "web-extension/gopassbridge.js", "scripts": {