Skip to content

Commit eeea0e4

Browse files
authored
Release v2.3.0 (#134)
1 parent 53855ae commit eeea0e4

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.github/workflows/build-wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
6060
- name: Verify that the `release_version` is larger/newer than the existing release in PyPI
6161
run: |
62-
python -c 'import sys; from packaging import version; code = 0 if version.parse("${{ env.ciso8601_version }}") < version.parse("${{ env.release_version }}") else 1; sys.exit(code)'
62+
python -c 'import sys; from packaging import version; code = 0 if version.parse("${{ env.pypi_version }}") < version.parse("${{ env.release_version }}") else 1; sys.exit(code)'
6363
6464
- name: Verify that the `release_version` is present in the CHANGELOG
6565
# TODO: Use something like `changelog-cli` to extract the correct version number
@@ -71,7 +71,7 @@ jobs:
7171
echo -e "release_version=${{ env.release_version }}\nrelease_tag=${{ env.release_tag }}" > release_values.txt
7272
7373
- name: Share normalized release values
74-
uses: actions/upload-artifact@v2
74+
uses: actions/upload-artifact@v3
7575
with:
7676
name: release_values
7777
path: release_values.txt
@@ -93,7 +93,7 @@ jobs:
9393
CIBW_SKIP: "pp*-macosx* *-win32 *-manylinux_i686"
9494
CIBW_ARCHS_MACOS: x86_64 arm64 universal2
9595

96-
- uses: actions/upload-artifact@v2
96+
- uses: actions/upload-artifact@v3
9797
with:
9898
path: ./wheelhouse/*.whl
9999

@@ -112,7 +112,7 @@ jobs:
112112
- name: Build sdist
113113
run: python setup.py sdist
114114

115-
- uses: actions/upload-artifact@v2
115+
- uses: actions/upload-artifact@v3
116116
with:
117117
path: dist/*.tar.gz
118118

@@ -163,4 +163,4 @@ jobs:
163163
# runs-on: ubuntu-latest
164164
# steps: # TODO
165165
# - run: |
166-
# echo "We're doing a release!? ${{ github.event }}"
166+
# echo "We're doing a release!? ${{ github.event }}"

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- [Unreleased](#unreleased)
44
- [2.x.x](#2xx)
5+
- [Version 2.3.0](#version-230)
56
- [Version 2.2.0](#version-220)
67
- [Version 2.1.3](#version-213)
78
- [Version 2.1.2](#version-212)
@@ -20,6 +21,13 @@
2021

2122
# Unreleased
2223

24+
*
25+
26+
# 2.x.x
27+
28+
## Version 2.3.0
29+
30+
* Added Python 3.11 support
2331
* Fix the build for PyPy2 ([#116](https://github.com/closeio/ciso8601/pull/116))
2432
* Added missing `fromutc` implementation for `FixedOffset` (#113). Thanks @davidkraljic
2533
* Removed improper ability to call `FixedOffset`'s `dst`, `tzname` and `utcoffset` without arguments
@@ -28,8 +36,6 @@
2836
* Added support for ISO week dates, ([#139](https://github.com/closeio/ciso8601/pull/139))
2937
* Added support for ordinal dates, ([#140](https://github.com/closeio/ciso8601/pull/140))
3038

31-
# 2.x.x
32-
3339
## Version 2.2.0
3440

3541
* Added Python 3.9 support

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
os.environ["_CL_"] = ""
3232
os.environ["_CL_"] += " /WX"
3333

34-
VERSION = "2.2.0"
34+
VERSION = "2.3.0"
3535
CISO8601_CACHING_ENABLED = int(os.environ.get('CISO8601_CACHING_ENABLED', '1') == '1')
3636

3737
setup(

0 commit comments

Comments
 (0)