From cc6b7578dafd1658a3a20a814d9cf75edff54996 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 29 May 2021 15:26:47 +0200 Subject: [PATCH] Add CHANGELOG.md MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .release-it.json | 16 ++++++++++++++++ CHANGELOG.md | 10 ++++++++++ package-lock.json | 15 +++++++++++++++ package.json | 1 + 4 files changed, 42 insertions(+) create mode 100644 .release-it.json create mode 100644 CHANGELOG.md diff --git a/.release-it.json b/.release-it.json new file mode 100644 index 00000000..6b631276 --- /dev/null +++ b/.release-it.json @@ -0,0 +1,16 @@ +{ + "plugins": { + "@release-it/keep-a-changelog": { + "filename": "CHANGELOG.md" + } + }, + "git": { + "requireCleanWorkingDir": false + }, + "npm": { + "publish": false + }, + "github": { + "release": true + } +} diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..c1d612c7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# 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). + +## [Unreleased] +### Added + +## [1.0.2-1] - 2021-05-29 diff --git a/package-lock.json b/package-lock.json index 520a6f83..480c5f3d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -806,6 +806,15 @@ "@octokit/openapi-types": "^7.2.3" } }, + "@release-it/keep-a-changelog": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@release-it/keep-a-changelog/-/keep-a-changelog-2.2.2.tgz", + "integrity": "sha512-fFHtjKcnxA2bE0jVBFTFSQq2U4bPqL1EhRx9kDl+fzAXqERjEazcvrrp6fk2LaVRSID4L0IPKQ4KyOBJGf0Y3g==", + "dev": true, + "requires": { + "detect-newline": "^3.1.0" + } + }, "@rollup/plugin-json": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-4.1.0.tgz", @@ -3784,6 +3793,12 @@ "minimalistic-assert": "^1.0.0" } }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true + }, "detective": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", diff --git a/package.json b/package.json index cdc8865d..48452bff 100644 --- a/package.json +++ b/package.json @@ -62,6 +62,7 @@ "utf-8-validate": "^5.0.5" }, "devDependencies": { + "@release-it/keep-a-changelog": "^2.2.2", "@rollup/plugin-json": "^4.1.0", "@types/node": "^14.17.1", "@types/uuid": "^8.3.0", -- 2.34.1