From 8566f9b06183e01a45265b87b564001d9252139b Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Tue, 18 May 2021 11:08:24 -0700 Subject: [PATCH 1/2] Add a changelog Adds an empty changelog file and a reminder to update it when opening pull requests. Also, adds a 1.0.0 version number in the package.json, which is what we _could_ use for version numbering. --- .github/pull_request_template.md | 3 ++- CHANGELOG.md | 3 +++ node_modules/.package-lock.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 8b6c99b951..cc7067d6f4 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,4 +1,5 @@ ### Merge / deployment checklist - [ ] Confirm this change is backwards compatible with existing workflows. -- [ ] Confirm the [readme](https://github.com/github/codeql-action/blob/master/README.md) has been updated if necessary. +- [ ] Confirm the [readme](https://github.com/github/codeql-action/blob/main/README.md) has been updated if necessary. +- [ ] Confirm the [changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) has been updated if necessary. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..238703df8f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +# CodeQL Action and CodQL Runner Changelog + +## [UNRELEASED] diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index 16785c20af..a919ad4902 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "0.0.0", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package-lock.json b/package-lock.json index 7f9bb26dca..800f636b1c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "codeql", - "version": "0.0.0", + "version": "1.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "codeql", - "version": "0.0.0", + "version": "1.0.0", "license": "MIT", "dependencies": { "@actions/core": "^1.2.6", diff --git a/package.json b/package.json index 30803cae55..97826c126f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeql", - "version": "0.0.0", + "version": "1.0.0", "private": true, "description": "CodeQL action", "scripts": { From 1564a6d863c4698d77559284e3ce60ff14ecd63e Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Wed, 19 May 2021 15:28:15 -0700 Subject: [PATCH 2/2] Fix typo in changelog Co-authored-by: Aditya Sharad <6874315+adityasharad@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 238703df8f..307cd26662 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ -# CodeQL Action and CodQL Runner Changelog +# CodeQL Action and CodeQL Runner Changelog ## [UNRELEASED]