Skip to content

Commit 612f13a

Browse files
authored
feat(auto-changelog): configure auto-changelog (#6)
1 parent 2d77b31 commit 612f13a

File tree

2 files changed

+49
-4
lines changed

2 files changed

+49
-4
lines changed

HISTORY.md

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,45 @@
1-
### Changelog
1+
# Changelog
22

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

5-
#### 1.0.0
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased](https://github.com/highlightjs/highlightjs-apex/compare/v1.1.0...HEAD)
9+
10+
### Merged
11+
12+
- feat: update to Spring 23 (API 57.0) [`#4`](https://github.com/highlightjs/highlightjs-apex/pull/4)
13+
14+
### Commits
15+
16+
- Create codeql.yml [`8f1af08`](https://github.com/highlightjs/highlightjs-apex/commit/8f1af08fa31f515393cc73ae9f29fa53d6b6eb42)
17+
- Create dependabot.yml [`c5da832`](https://github.com/highlightjs/highlightjs-apex/commit/c5da8326601a3c8feff1fb835ff4011c968a6135)
18+
- Readme typo [`faf2998`](https://github.com/highlightjs/highlightjs-apex/commit/faf2998257fbfa87cbe1a7138b2a0d32b8e7dcfa)
19+
20+
## [v1.1.0](https://github.com/highlightjs/highlightjs-apex/compare/v1.0.0...v1.1.0) - 2022-06-02
21+
22+
### Commits
23+
24+
- Release v1.1.0 [`06b9ea5`](https://github.com/highlightjs/highlightjs-apex/commit/06b9ea597d6042d385e4f6b0fccb71a0aa1b82e6)
25+
- CDN version update [`9e267ab`](https://github.com/highlightjs/highlightjs-apex/commit/9e267abb5a013492e98169e91cbdce3b641aaa3e)
26+
- README [`5cafe0c`](https://github.com/highlightjs/highlightjs-apex/commit/5cafe0c903d606f96412cee9302f25c645870281)
27+
28+
## v1.0.0 - 2022-05-31
29+
30+
### Merged
31+
32+
- NPM packaging [`#1`](https://github.com/highlightjs/highlightjs-apex/pull/1)
33+
34+
### Commits
635

736
- Initial release [`6541736`](https://github.com/highlightjs/highlightjs-apex/commit/6541736558de97458314f942ab048eb4f17b9d9b)
37+
- CDN version update [`a1de575`](https://github.com/highlightjs/highlightjs-apex/commit/a1de57573cfa1d83029b635908c5d1bc70987c88)
38+
- README [`1d14980`](https://github.com/highlightjs/highlightjs-apex/commit/1d14980b3c65a7edb2db38b8b41ca7487ac5660e)
39+
- Update README.md [`c23f0b9`](https://github.com/highlightjs/highlightjs-apex/commit/c23f0b942c60151ab62223fe6352fb7a6605a483)
40+
- README [`cc8ba72`](https://github.com/highlightjs/highlightjs-apex/commit/cc8ba727750a3d4dfa4325a01abb335dcbb2d21c)
41+
- Changelog [`7630f8b`](https://github.com/highlightjs/highlightjs-apex/commit/7630f8bbeb31f6c7c708a91d6593658e56a03fbc)
842
- Sample code update [`313d768`](https://github.com/highlightjs/highlightjs-apex/commit/313d7685eac440d47f9cfd7b4a70d2ab1b1d2796)
43+
- revert gitignore [`5ba665f`](https://github.com/highlightjs/highlightjs-apex/commit/5ba665f56b2b3a01813848cc0eb95aee462ca8b4)
44+
- Patch script [`ad35f1e`](https://github.com/highlightjs/highlightjs-apex/commit/ad35f1efd86a9544e2a115cc45a47aff6310a17e)
45+
- README update [`5f00ee2`](https://github.com/highlightjs/highlightjs-apex/commit/5f00ee2ba998c3c09bdbce47a6fec7f7668e90cf)

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,21 @@
66
"scripts": {
77
"test": "./node_modules/.bin/mocha --reporter spec",
88
"mocha": "mocha test/markup",
9-
"changelog": "auto-changelog --output HISTORY.md --hide-credit -p --commit-limit false",
9+
"changelog": "auto-changelog",
1010
"npm-patch": "npm version patch && npm publish"
1111
},
1212
"repository": {
1313
"type": "git",
1414
"url": "git+https://github.com/highlightjs/highlightjs-apex.git"
1515
},
16+
"auto-changelog": {
17+
"output": "HISTORY.md",
18+
"template": "keepachangelog",
19+
"unreleased": true,
20+
"hideCredit": true,
21+
"tagPrefix": "v",
22+
"commitLimit": 1000
23+
},
1624
"keywords": [
1725
"Apex",
1826
"Salesforce",

0 commit comments

Comments
 (0)