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 11, 2020
1 parent 2a95788 commit be596c1
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .npmrc
@@ -1 +1,3 @@
package-lock=false
allow-same-version=true
message=v%s
40 changes: 40 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,40 @@
# Changelog

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.0.0](https://github.com/ljharb/listify/compare/v0.0.1...v1.0.0) - 2014-08-13

### Commits

- Make sure old and unstable nodes don't break Travis [`4dbc35d`](https://github.com/ljharb/listify/commit/4dbc35d8d6d4120c30f1206cd6ec582bc3f68482)
- Adding `npm run coverage` [`a9344cc`](https://github.com/ljharb/listify/commit/a9344cc394d9eacaf1f6f488881362efaa97a337)
- Dropping node 0.6 support [`989855d`](https://github.com/ljharb/listify/commit/989855df99842fea2b826a51c3496bc4aaa6bf15)
- Updating dependencies [`d9df522`](https://github.com/ljharb/listify/commit/d9df5225998f19e54c8f68f3d1a17e3451982208)
- Adding 0.4 and commented 0.6 back. [`829c342`](https://github.com/ljharb/listify/commit/829c3428f5f46ca15806d12bcdd1c9a921c830ed)
- Updating tape [`1fb6927`](https://github.com/ljharb/listify/commit/1fb6927899aa266f71c2e57d636e243d34859741)
- Updating covert [`3b5c500`](https://github.com/ljharb/listify/commit/3b5c5002b0c2e6b0ff807426982ac2a558ecfd6e)
- Updating tape [`4995f3a`](https://github.com/ljharb/listify/commit/4995f3a0d545e219d4bf4d2c256084c6acd4ff36)
- Updating covert [`e1a8cf4`](https://github.com/ljharb/listify/commit/e1a8cf419a23ba9527cd709dc35caa44e7c53518)
- Updating tape [`245746d`](https://github.com/ljharb/listify/commit/245746dd752c6eb6060fdbab6ad778465126191b)
- Testing on node 0.6 now [`e0ea051`](https://github.com/ljharb/listify/commit/e0ea051f9ae7a3b728623de167b3fbb4426a37db)
- Unset strict SSL for node 0.6 in Travis-CI [`7d0b935`](https://github.com/ljharb/listify/commit/7d0b93536483695b2f96c33f6c3e10dadaa1a55b)
- Updating tape [`d8c820c`](https://github.com/ljharb/listify/commit/d8c820c83139f61c692708e746658e15f85c7013)
- Updating tape [`c1d08bf`](https://github.com/ljharb/listify/commit/c1d08bf4bffeb7cb8aa309c6eea4e79160a784b7)
- Test in node 0.11 too [`a930524`](https://github.com/ljharb/listify/commit/a930524212e2f2cc4642fedb6037eba9cf373220)

## v0.0.1 - 2013-09-07

### Commits

- Tests. [`ac7be65`](https://github.com/ljharb/listify/commit/ac7be65767ddca7683f1ccebef2d0eef3a6c664b)
- Initial commit [`00a1737`](https://github.com/ljharb/listify/commit/00a17378144f260a3b018c1b9d3b56dc025e882b)
- Implementation. [`8161f3d`](https://github.com/ljharb/listify/commit/8161f3ded61d78899993296019970b382a760976)
- package.json [`3d5f1e6`](https://github.com/ljharb/listify/commit/3d5f1e6598d64447f562363de47a51736d6c6bdd)
- Updating the README [`c93f912`](https://github.com/ljharb/listify/commit/c93f91261cb7c1a22e7e7278778c7178485bbb5d)
- Adding travis.yml [`159cc31`](https://github.com/ljharb/listify/commit/159cc3186c317d3393bb3dd05f745e921f1e9d56)
- Adding node_modules to gitignore since this is a module. [`a52f8f6`](https://github.com/ljharb/listify/commit/a52f8f649da25423421fcbd8fec1c8ff23978b8c)
12 changes: 11 additions & 1 deletion package.json
Expand Up @@ -10,7 +10,9 @@
"test": "npm run tests-only && npm run coverage -- --quiet",
"posttest": "npx aud",
"coverage": "covert test",
"lint": "eslint ."
"lint": "eslint .",
"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 Down Expand Up @@ -39,12 +41,20 @@
},
"devDependencies": {
"@ljharb/eslint-config": "^14.1.0",
"auto-changelog": "^1.16.2",
"covert": "^1.1.1",
"eslint": "^6.4.0",
"safe-publish-latest": "^1.1.3",
"tape": "^4.11.0"
},
"engines": {
"node": ">= 0.4"
},
"auto-changelog": {
"output": "CHANGELOG.md",
"template": "keepachangelog",
"unreleased": false,
"commitLimit": false,
"backfillLimit": false
}
}

0 comments on commit be596c1

Please sign in to comment.