diff --git a/HISTORY.md b/HISTORY.md index a58a29f6752..98be2bca8ad 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,18 @@ # Changelog +## [v1.0.2](https://github.com/tj-actions/changed-files/tree/v1.0.2) (2021-08-28) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.1...v1.0.2) + +**Fixed bugs:** + +- \[BUG\] Error: xargs: unmatched single quote [\#169](https://github.com/tj-actions/changed-files/issues/169) + +**Merged pull requests:** + +- Fixed bug with parsing filenames that contain quotes [\#174](https://github.com/tj-actions/changed-files/pull/174) ([jackton1](https://github.com/jackton1)) +- Upgraded to v1.0.1 [\#173](https://github.com/tj-actions/changed-files/pull/173) ([jackton1](https://github.com/jackton1)) + ## [v1.0.1](https://github.com/tj-actions/changed-files/tree/v1.0.1) (2021-08-28) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.0...v1.0.1) diff --git a/README.md b/README.md index 67b9f2c4689..e8ac5983c90 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 - name: List all modified files run: | @@ -116,11 +116,11 @@ jobs: - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 with: separator: "," @@ -142,7 +142,7 @@ jobs: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 with: files: | my-file.txt @@ -166,14 +166,14 @@ jobs: - name: Use a source file or list of file(s) to populate to files input. id: changed-files-specific-source-file - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 with: files_from_source_file: | test/changed-files-list.txt - name: Use a source file or list of file(s) to populate to files input and optionally specify more files. id: changed-files-specific-source-file-and-specify-files - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 with: files_from_source_file: | test/changed-files-list.txt @@ -182,13 +182,13 @@ jobs: - name: Use a different commit SHA id: changed-files-custom-sha - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 with: sha: ${{ github.event.pull_request.head.sha }} - name: Use a different base SHA id: changed-files-custom-base-sha - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 with: base_sha: "2096ed0" @@ -200,7 +200,7 @@ jobs: - name: Run changed-files with defaults on the dir1 id: changed-files-for-subfolder - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 with: path: subfolder @@ -217,7 +217,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v1.0.1 + uses: tj-actions/changed-files@v1.0.2 - name: Pre-commit uses: pre-commit/action@v2.0.0