Skip to content

Commit

Permalink
Merge pull request #3 from kinghat/release-v2.0.1
Browse files Browse the repository at this point in the history
Release v2.0.1
  • Loading branch information
kinghat authored Dec 9, 2019
2 parents 8ad0aa3 + 9a2f565 commit 9ebabca
Show file tree
Hide file tree
Showing 4 changed files with 886 additions and 632 deletions.
37 changes: 26 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,33 @@
## Version 2.0.0
# Changelog

##### Improvements
> All notable changes to this project will be documented in this file.
- frontend done in Vue
- backend using customized Vue CLI scaffolding
- UI styling done in Vuetify
- uses localstorage vs sync storage via Vuex
- switched to `webextension-polyfill` for cross-browser capability.
- still need to implement the automation.
- made use of the native `browser.tabs` api over using content-scipts and a confusing messaging system.
> The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Version 1.0.0
## [v2.0.1] - `12-9-19`

##### Initial Release
### Added

- `RELEASE_CHECKLIST.md` and incorporated it into a project board for future maintenance flow.

### Changed

- CHANGELOG

- moved to a more standard format

- Dependencies

- updated various dependencies

- Security
- updated a dependency with a security vulnerability alerted by github:

## [v2.0.0] - `11-21-19`## [v2.0.0] - `11-21-19`

## [v1.0.0] - `9-30-19`

### Initial Release

- pure js implementation
- basically no styling
Expand Down
35 changes: 35 additions & 0 deletions RELEASE_CHECKLIST.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
## **Release Checklist**

### Pre-release Checklist

- [ ] test `dev` branch after all merges have been made

### Release Checklist

- [ ] create `release` branch following the naming scheme: `release-vX.X.X` \*

- [ ] final release related changes:

- [ ] update `CHANGELOG.md` \*\*
- [ ] update `package.json` version property

- [ ] commit changes to `release` branch
- [ ] push finalized `release` branch to github
- [ ] merge `release` branch into `master` via github PR using `--no-ff` (githubs default merge method)

### Post-release Checklist

- [ ] pull the updated `master` locally
- [ ] create tag from master follow the naming scheme: `vX.X.X` and push to github.
- [ ] merge `release` branch back into the `dev` branch
- [ ] delete `release` branch
- [ ] build master to `/dist`
- [ ] create a release on github
- [ ] insert corresponding changes from `CHANGELOG.md`
- [ ] add packaged source via `web-ext` using `web-ext build` or `web-ext build --no-config-discovery --verbose --source-dir=dist --artifacts-dir=zips --overwrite-dest` \*\*\*

> \* follow [git-flow](https://nvie.com/posts/a-successful-git-branching-model/#release-branches) release branching strategy and adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
> \*\* The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
> \*\*\* [web-ext](https://extensionworkshop.com/documentation/develop/getting-started-with-web-ext) documentation
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "titlest",
"version": "2.0.0",
"version": "2.0.1",
"description": "an extension with the ability to replace or append a sites title",
"keywords": [],
"author": "",
Expand All @@ -12,34 +12,34 @@
"build:dev": "vue-cli-service build --mode development"
},
"dependencies": {
"core-js": "^3.4.1",
"vee-validate": "^3.0.11",
"core-js": "^3.4.8",
"vee-validate": "^3.1.3",
"vue": "^2.6.10",
"vuetify": "^2.1.10",
"vuetify": "^2.1.13",
"vuex": "^3.1.2",
"vuex-webextensions": "^1.3.0",
"webextension-polyfill": "^0.5.0"
},
"devDependencies": {
"@mdi/font": "^4.5.95",
"@mdi/font": "^4.7.95",
"@types/firefox-webext-browser": "^70.0.1",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-service": "^4.0.5",
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-airbnb": "^5.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.6.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.0.1",
"prettier": "^1.19.1",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"vue-cli-plugin-vuetify": "^2.0.2",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.1",
"vuetify-loader": "^1.4.3",
"webpack-extension-reloader": "^1.1.4"
}
}
Loading

0 comments on commit 9ebabca

Please sign in to comment.