Skip to content

Commit cdc1a71

Browse files
authored
Merge pull request #60 from ASFHyP3/develop
Release 0.2.0
2 parents d52a2fc + 83af782 commit cdc1a71

File tree

13 files changed

+28
-17
lines changed

13 files changed

+28
-17
lines changed

.github/dependabot.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
16
version: 2
27
updates:
3-
- package-ecosystem: "github-actions"
4-
directory: "/"
8+
- package-ecosystem: github-actions
9+
directory: /
510
schedule:
6-
interval: "daily"
11+
interval: weekly
712
labels:
8-
- "bumpless"
13+
- bumpless

.github/workflows/changelog.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,4 @@ on:
1313

1414
jobs:
1515
call-changelog-check-workflow:
16-
uses: ASFHyP3/actions/.github/workflows/[email protected]
17-
secrets:
18-
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
uses: ASFHyP3/actions/.github/workflows/[email protected]

.github/workflows/create-jira-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
call-create-jira-issue-workflow:
9-
uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.9.0
9+
uses: ASFHyP3/actions/.github/workflows/reusable-create-jira-issue.yml@v0.11.1
1010
secrets:
1111
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }}
1212
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}

.github/workflows/labeled-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ on:
1212

1313
jobs:
1414
call-labeled-pr-check-workflow:
15-
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.9.0
15+
uses: ASFHyP3/actions/.github/workflows/reusable-labeled-pr-check.yml@v0.11.1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
call-release-workflow:
10-
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.9.0
10+
uses: ASFHyP3/actions/.github/workflows/reusable-release.yml@v0.11.1
1111
with:
1212
release_prefix: HyP3 Cookiecutter
1313
secrets:

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ on: push
44

55
jobs:
66
call-secrets-analysis-workflow:
7-
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.9.0
7+
uses: ASFHyP3/actions/.github/workflows/reusable-secrets-analysis.yml@v0.11.1

.github/workflows/tag-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ on:
77

88
jobs:
99
call-bump-version-workflow:
10-
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.9.0
10+
uses: ASFHyP3/actions/.github/workflows/reusable-bump-version.yml@v0.11.1
1111
secrets:
1212
USER_TOKEN: ${{ secrets.TOOLS_BOT_PAK }}

.trufflehog.txt

Whitespace-only changes.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [PEP 440](https://www.python.org/dev/peps/pep-0440/)
77
and uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [0.2.0]
10+
### Removed
11+
* Support for Python 3.8 and 3.9 has been dropped. The minimum version is now 3.10.
12+
### Fixed
13+
* Removed the deprecated `jinja2_time.TimeExtension` from the cookiecutter config
14+
915
## [0.1.3]
1016
### Changed
1117
* Upgraded to `hyp3lib=>3,<4`.

cookiecutter.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"short_description": "HyP3 plugin for {{cookiecutter.process_type}} processing",
66
"public_url": "https://github.com/ASFHyP3/hyp3-{{cookiecutter.process_type}}",
77
"copyright_year": "{% now 'utc', '%Y' %}",
8-
"_extensions": ["jinja2_time.TimeExtension"],
98
"__project_name": "hyp3-{{cookiecutter.process_type | lower}}",
109
"__project_title": "HyP3 {{cookiecutter.process_type}}",
1110
"__package_name": "hyp3_{{cookiecutter.process_type | lower | replace('-', '_')}}",

0 commit comments

Comments
 (0)