Skip to content

Commit fa8b441

Browse files
1.0.1
Automatically generated by python-semantic-release
1 parent e7cf464 commit fa8b441

19 files changed

+28
-19
lines changed

.github/workflows/_reusable-package-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
previous-changelog-filepath: ${{ inputs.previous-changelog-filepath }}
9797
previous-release-notes-filepath: ${{ inputs.previous-release-notes-filepath }}
9898
- if: ${{ !endsWith(github.repository, '/python-package-ci-cd') }} # Run the public action when this is run outside the python-package-ci-cd repository
99-
uses: tektronix/python-package-ci-cd/actions/[email protected].0
99+
uses: tektronix/python-package-ci-cd/actions/[email protected].1
100100
with:
101101
release-level: ${{ inputs.release-level }}
102102
previous-changelog-filepath: ${{ inputs.previous-changelog-filepath }}
@@ -126,7 +126,7 @@ jobs:
126126
previous-changelog-filepath: ${{ inputs.previous-changelog-filepath }}
127127
previous-release-notes-filepath: ${{ inputs.previous-release-notes-filepath }}
128128
- if: ${{ !endsWith(github.repository, '/python-package-ci-cd') }} # Run the public action when this is run outside the python-package-ci-cd repository
129-
uses: tektronix/python-package-ci-cd/actions/[email protected].0
129+
uses: tektronix/python-package-ci-cd/actions/[email protected].1
130130
with:
131131
previous-changelog-filepath: ${{ inputs.previous-changelog-filepath }}
132132
previous-release-notes-filepath: ${{ inputs.previous-release-notes-filepath }}

.github/workflows/_reusable-package-testpypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
package-name: ${{ inputs.package-name }}
3535
- if: ${{ !endsWith(github.repository, '/python-package-ci-cd') }} # Run the public action when this is run outside the python-package-ci-cd repository
36-
uses: tektronix/python-package-ci-cd/actions/[email protected].0
36+
uses: tektronix/python-package-ci-cd/actions/[email protected].1
3737
id: create-version
3838
with:
3939
package-name: ${{ inputs.package-name }}

.github/workflows/_reusable-update-python-and-pre-commit-dependencies.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
pre-commit-hook-skip-list: ${{ inputs.pre-commit-hook-skip-list }}
9494
export-dependency-groups: ${{ inputs.export-dependency-groups }}
9595
- if: ${{ !endsWith(github.repository, '/python-package-ci-cd') }} # Run the public action when this is run outside the python-package-ci-cd repository
96-
uses: tektronix/python-package-ci-cd/actions/[email protected].0
96+
uses: tektronix/python-package-ci-cd/actions/[email protected].1
9797
with:
9898
dependency-dict: ${{ inputs.dependency-dict }}
9999
update-pre-commit: ${{ inputs.update-pre-commit }}

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ Valid subsections within a version are:
1818

1919
Things to be included in the next release go here.
2020

21+
---
22+
23+
## v1.0.1 (2024-08-27)
24+
25+
### Merged Pull Requests
26+
27+
- docs: Update changelog with incoming change notes on python-semantic-release config updates ([#20](https://github.com/tektronix/python-package-ci-cd/pull/20))
28+
- chore: Update all pinned versions of python-package-ci-cd to v1.0.0 ([#19](https://github.com/tektronix/python-package-ci-cd/pull/19))
29+
2130
### Fixed
2231

2332
- Fixed an issue with the semantic-release configuration preventing updated files with each new release version from being properly updated in the repo as a part of the release.

actions/create_unique_testpypi_version/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v4
3838
with:
3939
fetch-depth: 0
40-
- uses: tektronix/python-package-ci-cd/actions/[email protected].0
40+
- uses: tektronix/python-package-ci-cd/actions/[email protected].1
4141
id: create-version
4242
with:
4343
package-name: my-package # required

actions/find_unreleased_changelog_items/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- uses: actions/checkout@v4
51-
- uses: tektronix/python-package-ci-cd/actions/[email protected].0
51+
- uses: tektronix/python-package-ci-cd/actions/[email protected].1
5252
with:
5353
release-level: ${{ inputs.release-level }} # optional
5454
previous-changelog-filepath: .previous_changelog_for_template.md # optional

actions/update_development_dependencies/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
ref: ${{ github.head_ref }}
4747
token: ${{ secrets.checkout-token }}
4848
49-
- uses: tektronix/python-package-ci-cd/actions/[email protected].0
49+
- uses: tektronix/python-package-ci-cd/actions/[email protected].1
5050
with:
5151
repo-root: . # optional, defaults to the current working directory
5252
install-dependencies: false # optional, this will almost never need to be set to true

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ wrap-summaries = 0
2727

2828
[tool.poetry]
2929
package-mode = false
30-
version = "1.0.0"
30+
version = "1.0.1"
3131

3232
[tool.poetry.dependencies]
3333
python = "~3.12"

workflows/codeql-analysis.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ on:
4343
branches: [main]
4444
jobs:
4545
analyze:
46-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
46+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
4747
with:
4848
languages-array: '["python", "javascript"]'
4949
codeql-queries: security-extended,security-and-quality

workflows/enforce-community-standards.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ on:
4444
branches: [main]
4545
jobs:
4646
enforce-community-standards:
47-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
47+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
4848
```
4949
5050
[workflow-file]: ../.github/workflows/_reusable-enforce-community-standards.yml

workflows/package-build.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ concurrency:
5959
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
6060
jobs:
6161
package-build:
62-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
62+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
6363
with:
6464
package-name: my_package # required
6565
python-versions-array: '["3.9", "3.10", "3.11", "3.12"]' # required

workflows/package-release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ concurrency: # This concurrency is not required, but can be added if extra cont
107107
group: pypi
108108
jobs:
109109
package-release:
110-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
110+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
111111
with:
112112
package-name: my-package # required
113113
repo-name: owner/my-package # required

workflows/package-testpypi.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ concurrency: # This concurrency is not required, but can be added if extra cont
5858
group: pypi
5959
jobs:
6060
package-testpypi:
61-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
61+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
6262
with:
6363
package-name: my-package # required
6464
repo-name: owner/my-package # required

workflows/publish-api-comparison.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ on:
4545
types: [completed]
4646
jobs:
4747
publish-api-comparison:
48-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
48+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
4949
permissions:
5050
checks: write
5151
pull-requests: write

workflows/publish-test-results.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ on:
5555
types: [completed]
5656
jobs:
5757
publish-test-results:
58-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
58+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
5959
with:
6060
operating-systems-array: '["ubuntu", "windows", "macos"]' # required
6161
permissions:

workflows/sbom-scan.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ on:
5151
types: [published]
5252
jobs:
5353
sbom-scan:
54-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
54+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
5555
permissions:
5656
security-events: write
5757
contents: write

workflows/test-code.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ concurrency:
134134
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
135135
jobs:
136136
test-code:
137-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
137+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
138138
with:
139139
repo-name: owner/repo # required
140140
operating-systems-array: '["ubuntu", "windows", "macos"]' # optional

workflows/test-docs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ concurrency:
8989
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
9090
jobs:
9191
test-docs:
92-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
92+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
9393
with:
9494
node-version: 20 # required
9595
python-version: '3.11' # required

workflows/update-python-and-pre-commit-dependencies.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ on:
5656
branches: [main]
5757
jobs:
5858
update-python-and-pre-commit-dependencies:
59-
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].0
59+
uses: tektronix/python-package-ci-cd/.github/workflows/[email protected].1
6060
with:
6161
commit-user-name: 'User Name'
6262
commit-user-email: 'user-email'

0 commit comments

Comments
 (0)