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

internal: add changelog + generation #6

Merged
merged 3 commits into from
Jun 10, 2021
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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
### Changelog

All notable changes to this project will be documented in this file. Dates are displayed in UTC.

#### [0.0.2](https://github.com/chrismllr/ember-validation-state/compare/0.0.2...0.0.2)

> 14 September 2020

- feat: format using prettier [`#2`](https://github.com/chrismllr/ember-validation-state/pull/2)
- internal: run CI via github actions [`#1`](https://github.com/chrismllr/ember-validation-state/pull/1)

#### 0.0.2

> 15 June 2020

- initial commit [`0d8cb5d`](https://github.com/chrismllr/ember-validation-state/commit/0d8cb5d56d6e55fd36724361f7df251674b07a39)
- Initial Commit from Ember CLI v3.18.0 [`2d90a46`](https://github.com/chrismllr/ember-validation-state/commit/2d90a461331122b7971c2de01cd569d3ae2526d9)
- add husky/ lint-staged [`81f11ce`](https://github.com/chrismllr/ember-validation-state/commit/81f11ce74a73a256b1fc78224798aaf089e092e5)
14 changes: 11 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,17 @@
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
"commitMessage": "chore: release v${version}",
"changelog": "npx auto-changelog --stdout --commit-limit true -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"npm": {
"publish": false
"publish": true
},
"github": {
"release": true
},
"hooks": {
"after:bump": "npx auto-changelog -p --commit-limit true --hide-credit true && git add CHANGELOG.md"
}
},
"dependencies": {
Expand Down Expand Up @@ -92,7 +96,7 @@
"prettier": "^2.2.1",
"qunit": "^2.14.1",
"qunit-dom": "^1.6.0",
"release-it": "^13.6.3"
"release-it": "^14.8.0"
},
"engines": {
"node": "10.* || >= 12"
Expand All @@ -106,5 +110,9 @@
"volta": {
"node": "12.18.0",
"yarn": "1.22.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}
Loading