diff --git a/CHANGELOG.md b/CHANGELOG.md index cd11aa3..2b7e53f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [v0.5.2](https://github.com/inyono/changelog/compare/v0.5.1..v0.5.2) - March 10, 2022 + +### Fixed + +- Publish build output. + ## [v0.5.1](https://github.com/inyono/changelog/compare/v0.5.0..v0.5.1) - March 10, 2022 ### Internal diff --git a/package.json b/package.json index 5416ad7..1ef4629 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inyono/changelog", - "version": "0.5.1", + "version": "0.5.2", "homepage": "https://github.com/inyono/changelog", "bugs": { "url": "https://github.com/inyono/changelog/issues" @@ -12,6 +12,9 @@ "exports": "./dist/index.js", "source": "./src/index.ts", "types": "./dist/index.d.ts", + "files": [ + "/dist" + ], "scripts": { "_prettier": "prettier .", "build": "rimraf dist && tsup src/index.ts --dts --format esm", diff --git a/scripts/changelog.ts b/scripts/changelog.ts index 3a054fe..cd1a80f 100644 --- a/scripts/changelog.ts +++ b/scripts/changelog.ts @@ -116,6 +116,11 @@ generateChangelog({ date: '2022-03-10', internal: ['Remove .npmignore.'], }, + { + tagName: 'v0.5.2', + date: '2022-03-10', + fixed: ['Publish build output.'], + }, ], })