release: v8.0.1

This commit is contained in:
Federico Grandi
2022-01-23 23:49:26 +01:00
parent cb4f06fa66
commit 756d9ea820
3 changed files with 13 additions and 4 deletions

View File

@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [8.0.1] - 2022-01-23
### Fixed:
- Fixed a bug that prevented the `--allow-empty` flag from being used for the `commit` input. (#352)
- Fixed README and CHANGELOG docs for the `pull` input, that were still showing the option to use `NO-PULL` to prevent pulling (while now it's the default behavior). (#354)
- Added a paragraph to the FAQs section of the README, that explains how to work with PRs in v8. (#351)
## [8.0.0] - 2022-01-20 ## [8.0.0] - 2022-01-20
### Fixed: ### Fixed:
@@ -291,7 +299,7 @@ First release
# #
[unreleased]: https://github.com/EndBug/add-and-commit/compare/v8.0.0...HEAD [unreleased]: https://github.com/EndBug/add-and-commit/compare/v8.0.1...HEAD
[1.0.0]: https://github.com/EndBug/add-and-commit/tree/v1.0.0 [1.0.0]: https://github.com/EndBug/add-and-commit/tree/v1.0.0
[2.0.0]: https://github.com/EndBug/add-and-commit/compare/v1.0.0...v2.0.0 [2.0.0]: https://github.com/EndBug/add-and-commit/compare/v1.0.0...v2.0.0
[2.1.0]: https://github.com/EndBug/add-and-commit/compare/v2.0.0...v2.1.0 [2.1.0]: https://github.com/EndBug/add-and-commit/compare/v2.0.0...v2.1.0
@@ -330,3 +338,4 @@ First release
[7.4.0]: https://github.com/EndBug/add-and-commit/compare/v7.3.0...v7.4.0 [7.4.0]: https://github.com/EndBug/add-and-commit/compare/v7.3.0...v7.4.0
[7.5.0]: https://github.com/EndBug/add-and-commit/compare/v7.4.0...v7.5.0 [7.5.0]: https://github.com/EndBug/add-and-commit/compare/v7.4.0...v7.5.0
[8.0.0]: https://github.com/EndBug/add-and-commit/compare/v7.5.0...v8.0.0 [8.0.0]: https://github.com/EndBug/add-and-commit/compare/v7.5.0...v8.0.0
[8.0.1]: https://github.com/EndBug/add-and-commit/compare/v8.0.0...v8.0.1

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "add-and-commit", "name": "add-and-commit",
"version": "8.0.0", "version": "8.0.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "add-and-commit", "name": "add-and-commit",
"version": "8.0.0", "version": "8.0.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.6.0", "@actions/core": "^1.6.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "add-and-commit", "name": "add-and-commit",
"version": "8.0.0", "version": "8.0.1",
"private": true, "private": true,
"description": "Add & commit files from a path directly from GitHub Actions", "description": "Add & commit files from a path directly from GitHub Actions",
"main": "lib/index.js", "main": "lib/index.js",