Skip to content

Commit c5e6598

Browse files
Update changelog for new release (#418)
* Update changelog for new release * First version auto release to pypi
1 parent c8337cc commit c5e6598

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/workflows/publish_pypi.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Upload Python Package to PyPI when a Release is Created
2+
3+
on:
4+
workflow_dispatch:
5+
6+
release:
7+
types: [created]
8+
9+
10+
jobs:
11+
pypi-publish:
12+
name: Publish release to PyPI
13+
runs-on: ubuntu-latest
14+
environment:
15+
name: release
16+
url: https://pypi.org/p/configspace
17+
permissions:
18+
id-token: write
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Set up Python
22+
uses: actions/setup-python@v4
23+
with:
24+
python-version: "3.x"
25+
- name: Install dependencies
26+
run: |
27+
python -m pip install --upgrade pip
28+
pip install setuptools wheel build
29+
- name: Build package
30+
run: |
31+
python -m build
32+
- name: Publish package distributions to PyPI
33+
uses: pypa/gh-action-pypi-publish@release/v1

changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Version 1.2.2
2+
3+
* MAINT #404: Added support for Python 3.13.
4+
* FIX #406: Fixed issue for shuffle to undo unique sort
5+
* FEAT #409: Added new Forbidden Clauses and Relations
6+
* FIX #410: Fixed docs compilation
7+
* FIX #415: Fix issue with checking conditional OR clauses.
8+
* MAINT #417: Added support for Python 3.14, dropped support for Python 3.8.
9+
110
# Version 1.2.1
211

312
* FEAT #397: Fix issue with forbidden check with disabled parameters.

0 commit comments

Comments
 (0)