Skip to content

Commit

Permalink
remove towncrier as changelog handler
Browse files Browse the repository at this point in the history
The project will use Automatically generated release notes from now on
  • Loading branch information
fschuch committed Jun 5, 2024
1 parent 7432130 commit 81d44ce
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 411 deletions.
34 changes: 34 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
changelog:
categories:
- title: Security
labels:
- security
- title: Removed
labels:
- removed
- title: Deprecated
labels:
- deprecated
- title: Added
labels:
- added
- title: Changed
labels:
- changed
- title: Fixed
labels:
- fixed
- title: Documentation
labels:
- docs
- title: Internals
labels:
- chore
- refactor
- dependencies
- title: Other Changes
labels:
- "*"
exclude:
authors:
- pre-commit-ci[bot]
44 changes: 0 additions & 44 deletions .github/workflows/1-prepare-release.yaml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/2-tag-release.yaml

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- v[0-9].[0-9].[0-9]*
branches:
- main
- release/**
pull_request:
paths:
- .github/workflows/ci.yaml
Expand Down Expand Up @@ -70,17 +69,18 @@ jobs:
merge-multiple: true

- uses: actions/setup-python@v5
if: startsWith(github.ref, 'refs/tags/')
if: github.ref_type == 'tag'
with:
python-version: "3.12"
cache: "pip"

- name: Set Version
if: startsWith(github.ref, 'refs/tags/')
if: github.ref_type == 'tag'
run: |
python -m pip install hatch
VERSION=$(hatch version)
echo "sonar.projectVersion=$VERSION" >> sonar-project.properties
cat sonar-project.properties
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- v[0-9].[0-9].[0-9]*
branches:
- main
- release/**
pull_request:
paths:
- .github/workflows/docs.yaml
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For developers, it works as a rapid prototyping tool, to test concepts and then
## Useful links

- [Documentation](https://docs.fschuch.com/xcompact3d_toolbox/);
- [Changelog](https://docs.fschuch.com/xcompact3d_toolbox/news.html);
- [Changelog](https://github.com/fschuch/xcompact3d_toolbox/releases);
- [Suggestions for new features and bug report](https://github.com/fschuch/xcompact3d_toolbox/issues);
- [See what is coming next (Project page)](https://github.com/fschuch/xcompact3d_toolbox/projects/1);
- [Xcompact3d's repository](https://github.com/xcompact3d/Incompact3d).
Expand Down
Empty file removed changelog.d/README.md
Empty file.
1 change: 0 additions & 1 deletion docs/_toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ parts:
- file: examples/Heat-exchanger.ipynb
- caption: References
chapters:
- file: news.md
- file: Docstrings.rst
Loading

0 comments on commit 81d44ce

Please sign in to comment.