Skip to content

Commit

Permalink
[meta] add auto-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 27, 2020
1 parent 293f453 commit 672196a
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
package-lock=false
audit-level=high
allow-same-version=true
message=v%s
39 changes: 33 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,34 @@
1.1.0 / 2015-03-03
==================
* Add a concise generator method to the exported generator function, if available.
# Changelog

1.0.0 / 2014-12-14
==================
* Initial release.
All notable changes to this project will be documented in this file.

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).

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

## [v1.1.0](https://github.com/ljharb/make-generator-function/compare/v1.0.0...v1.1.0) - 2015-03-03

### Commits

- Add a concise generator method. [`ea86f3d`](https://github.com/ljharb/make-generator-function/commit/ea86f3df4565ce6e0f39745921dcb8b79295ea09)
- All grade A-supported `node`/`iojs` versions now ship with an `npm` that understands `^`. [`62630da`](https://github.com/ljharb/make-generator-function/commit/62630da0cb6a95b74e01337768bf8155e3f9301e)
- Reorganizing tests. [`f77c0cd`](https://github.com/ljharb/make-generator-function/commit/f77c0cd2903a4967f10ee72cc0b845846d82f9c7)
- Update `is`, `tape`, `jscs`, `nsp` [`40c85a2`](https://github.com/ljharb/make-generator-function/commit/40c85a261343ced20aa49c0dce092d252dea9b85)
- Run `travis-ci` tests on `iojs` and `node` v0.12; speed up builds; allow 0.8 failures. [`2f20edc`](https://github.com/ljharb/make-generator-function/commit/2f20edc19142f72c6754bfec1fded309d33142b3)
- Test on latest `io.js` [`0eac7b6`](https://github.com/ljharb/make-generator-function/commit/0eac7b6c268c6c8b26a4d7f317d273ef6ac7c63c)
- Update `tape`, `jscs` [`dab3942`](https://github.com/ljharb/make-generator-function/commit/dab3942b0a873779726536345ca1128b933dddff)
- Update `jscs` [`f9cfafb`](https://github.com/ljharb/make-generator-function/commit/f9cfafb2eec8d2f3bfd5bd08ea7274ae3db99d1e)
- Don't run eccheck as part of tests yet. [`c8fe96d`](https://github.com/ljharb/make-generator-function/commit/c8fe96d983c36bd91e1b6d809aacecea0e314ca5)
- Test on `iojs-v1.2` [`b188157`](https://github.com/ljharb/make-generator-function/commit/b18815735c496e49f3b12c875adf279bae262a7e)

## v1.0.0 - 2014-12-15

### Commits

- Dotfiles. [`e46a5e8`](https://github.com/ljharb/make-generator-function/commit/e46a5e8a3bf643ac2b409a5520a9ea6b2dfede8c)
- package.json [`3198c72`](https://github.com/ljharb/make-generator-function/commit/3198c72c00d01cc37cfa84ba02c770a2075a51bb)
- README. [`745a376`](https://github.com/ljharb/make-generator-function/commit/745a376ea5d159ec2482c9353eef61e0321192ce)
- Tests. [`6298e7c`](https://github.com/ljharb/make-generator-function/commit/6298e7cd6d237ddce2f1d4aedfbdf84f02cc6c17)
- Implementation. [`7d5e297`](https://github.com/ljharb/make-generator-function/commit/7d5e297069acf8f7fdb123a0520a6f0481bf9a08)
- Initial commit. [`cbb4c0c`](https://github.com/ljharb/make-generator-function/commit/cbb4c0cf6ee16d14626ebdf25ee9cce74c0916f6)
12 changes: 11 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"posttest": "npx aud",
"coverage": "covert test/*.js",
"lint": "eslint .",
"eccheck": "eclint check *.js **/*.js > /dev/null"
"eccheck": "eclint check *.js **/*.js > /dev/null",
"version": "auto-changelog && git add CHANGELOG.md",
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
},
"repository": {
"type": "git",
Expand All @@ -34,6 +36,7 @@
"dependencies": {},
"devDependencies": {
"@ljharb/eslint-config": "^14.1.0",
"auto-changelog": "^1.16.2",
"covert": "^1.1.1",
"eclint": "^2.8.1",
"eslint": "^6.4.0",
Expand All @@ -60,5 +63,12 @@
},
"engines": {
"node": ">= 0.4"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false
}
}

0 comments on commit 672196a

Please sign in to comment.