Skip to content

Commit ed16103

Browse files
committed
release 0.3.0
1 parent 0a09501 commit ed16103

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

.github/workflows/container.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
4242
with:
4343
context: .
44+
file: ./Containerfile
4445
platforms: linux/amd64,linux/arm64
4546
push: true
4647
tags: ${{ steps.meta.outputs.tags }}

.github/workflows/wheels.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,21 @@ on:
66

77
jobs:
88
release-build:
9-
10-
runs-on: ${{ matrix.os }}
11-
strategy:
12-
matrix:
13-
os: [ubuntu-latest, macos-latest, windows-latest]
14-
python-version: ['3.x', '3.10', '3.11', '3.12', '3.13', '3.14']
9+
runs-on: ubuntu-latest
1510

1611
steps:
1712
- uses: actions/checkout@v5
1813
- name: Set up Python
1914
uses: actions/setup-python@v6
2015
with:
21-
python-version: ${{ matrix.python-version }}
16+
python-version: '3.x'
2217
- name: Install dependencies
2318
run: |
2419
python -m pip install --upgrade pip
25-
pip install setuptools wheel twine
20+
pip install build
2621
- name: Build
2722
run: |
28-
python setup.py sdist bdist_wheel
23+
python -m build
2924
3025
- name: Upload artifact
3126
uses: actions/upload-artifact@v5

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0.3.0 UNRELEASED
1+
0.3.0 2025-11-26
22

33
* Add RFC 7953 (Calendar Availability) support. (Jelmer Vernooij, #483)
44

xandikos/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222

2323
import defusedxml.ElementTree # noqa: F401 This does some monkey-patching on-load
2424

25-
__version__ = (0, 2, 12)
25+
__version__ = (0, 3, 0)
2626
version_string = ".".join(map(str, __version__))

0 commit comments

Comments
 (0)