diff --git a/HISTORY.md b/HISTORY.md index b6232895..3a027e98 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,23 @@ # Changelog +## [v1.1.0](https://github.com/tj-actions/changed-files/tree/v1.1.0) (2021-09-04) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.3...v1.1.0) + +**Implemented enhancements:** + +- \[Feature\] Specify sed delimiter or escaping forward slashes used in separator [\#180](https://github.com/tj-actions/changed-files/issues/180) + +**Closed issues:** + +- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) + +**Merged pull requests:** + +- Update pascalgn/automerge-action action to v0.14.3 [\#184](https://github.com/tj-actions/changed-files/pull/184) ([renovate[bot]](https://github.com/apps/renovate)) +- Upgraded to v1.0.3 [\#183](https://github.com/tj-actions/changed-files/pull/183) ([jackton1](https://github.com/jackton1)) +- Update handling separator. [\#181](https://github.com/tj-actions/changed-files/pull/181) ([jackton1](https://github.com/jackton1)) + ## [v1.0.3](https://github.com/tj-actions/changed-files/tree/v1.0.3) (2021-09-03) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.0.2...v1.0.3) @@ -40,10 +58,6 @@ - \[BUG\] Deleted files not detected [\#165](https://github.com/tj-actions/changed-files/issues/165) - \[BUG\] changed-files unable to initialize git repository on custom container image [\#164](https://github.com/tj-actions/changed-files/issues/164) -**Closed issues:** - -- Dependency Dashboard [\#27](https://github.com/tj-actions/changed-files/issues/27) - **Merged pull requests:** - Updated README.md [\#172](https://github.com/tj-actions/changed-files/pull/172) ([jackton1](https://github.com/jackton1)) diff --git a/README.md b/README.md index abe0c578..684dff3b 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.3 + uses: tj-actions/changed-files@v1.1.0 - 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.3 + uses: tj-actions/changed-files@v1.1.0 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v1.0.3 + uses: tj-actions/changed-files@v1.1.0 with: separator: "," @@ -142,7 +142,7 @@ jobs: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v1.0.3 + uses: tj-actions/changed-files@v1.1.0 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.3 + uses: tj-actions/changed-files@v1.1.0 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.3 + uses: tj-actions/changed-files@v1.1.0 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.3 + uses: tj-actions/changed-files@v1.1.0 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.3 + uses: tj-actions/changed-files@v1.1.0 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.3 + uses: tj-actions/changed-files@v1.1.0 with: path: subfolder @@ -217,7 +217,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v1.0.3 + uses: tj-actions/changed-files@v1.1.0 - name: Pre-commit uses: pre-commit/action@v2.0.0