From a11f99fe020ee21076c90fc3d1ad5bf801742c57 Mon Sep 17 00:00:00 2001 From: Kurt Raschke Date: Sun, 3 Nov 2024 20:40:49 -0500 Subject: [PATCH] This is pyRFC3339 2.0.1. --- CHANGES.rst | 7 +++++++ README.rst | 4 ++-- docs/source/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 312ddd2..0cad978 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,16 @@ Changelog ========= +2.0.1 (2024-11-03) +------------------ + +- Fix GitHub Actions badge in README.rst. + 2.0 (2024-11-03) ---------------- +(not released to PyPI) + - Migrate tests from `nose` to `unittest` and `pytest` (:issue:`16`) - Replace :mod:`pytz` dependency with :attr:`datetime.timezone.utc` and :mod:`zoneinfo` (:issue:`15`) - Reformat codebase with `black` and `isort` diff --git a/README.rst b/README.rst index b03cae0..9a6173d 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,8 @@ Description =========== -.. image:: https://github.com/kurtraschke/pyRFC3339/actions/workflows/test.yml/badge.svg - :target: https://github.com/kurtraschke/pyRFC3339/actions/workflows/test.yml +.. image:: https://github.com/kurtraschke/pyRFC3339/actions/workflows/test-python.yml/badge.svg + :target: https://github.com/kurtraschke/pyRFC3339/actions/workflows/test-python.yml :alt: Build Status .. image:: https://readthedocs.org/projects/pyrfc3339/badge/?version=latest diff --git a/docs/source/conf.py b/docs/source/conf.py index 768c693..15ebca7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -45,9 +45,9 @@ # built documents. # # The short X.Y version. -version = '2.0' +version = '2.0.1' # The full version, including alpha/beta/rc tags. -release = '2.0' +release = '2.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 179ea73..a1c5949 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name = "pyRFC3339", - version = "2.0", + version = "2.0.1", author = "Kurt Raschke", author_email = "kurt@kurtraschke.com", url = "https://github.com/kurtraschke/pyRFC3339",