Skip to content
This repository was archived by the owner on May 1, 2023. It is now read-only.

Commit cc52a50

Browse files
committed
release v0.2.0
1 parent 12aef03 commit cc52a50

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [v0.2.0](https://github.com/inyono/copyright-headers/compare/v0.1.0..v0.2.0)
6+
7+
### Breaking Changes
8+
9+
- This package is now ESM only. [Learn more about ESM in this guide](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).
10+
11+
- Drop Node v12 support.
12+
513
## [v0.1.0](https://github.com/inyono/copyright-headers/compare/v0.0.2..v0.1.0)
614

715
### Breaking Changes

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@inyono/copyright-headers",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"homepage": "https://github.com/inyono/changelog",
55
"bugs": {
66
"url": "https://github.com/inyono/changelog/issues"
@@ -11,6 +11,9 @@
1111
"type": "module",
1212
"exports": "./dist/index.js",
1313
"types": "./dist/index.d.ts",
14+
"files": [
15+
"/dist"
16+
],
1417
"scripts": {
1518
"_prettier": "prettier .",
1619
"build": "rimraf dist && tsup src/index.ts --dts --format esm",

scripts/changelog.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,13 @@ async function exec(): Promise<void> {
6060
],
6161
added: ['Update dependencies to support Node v14.'],
6262
},
63+
{
64+
tagName: 'v0.2.0',
65+
breakingChanges: [
66+
'This package is now ESM only. [Learn more about ESM in this guide](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c).',
67+
'Drop Node v12 support.',
68+
],
69+
},
6370
],
6471
})
6572

0 commit comments

Comments
 (0)