Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.0 #258

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifests/chrome-manifest-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion manifests/chrome-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion manifests/firefox-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
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": "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": {
Expand Down