Skip to content

Commit

Permalink
Bump version to v2.0.1b1
Browse files Browse the repository at this point in the history
  • Loading branch information
movermeyer committed Oct 6, 2023
1 parent a701a35 commit 9f341e4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

- [2.x.x](#2xx)
- [Migration from 1.x.x](#migration-from-1xx)
- [Version 2.0.1](#version-201)
- [Version 2.0.0](#version-200)
- [1.x.x](#1xx)
- [Version 1.0.0](#version-100)
Expand All @@ -19,6 +20,12 @@ No migration is needed.

However, starting in version 2, `backports.datetime_fromisoformat` will apply its changes to Python < 3.11, whereas v1 only applied changes to Python < 3.7. If you happened to be using `backports.datetime_fromisoformat` v1 on Python 3.7 through Python 3.10 and then upgrade to v2, it will patch the `fromisoformat` methods, whereas in v1 it did not. The `fromisoformat` methods will be able to parse timestamps from a wider portion of the ISO 8601 specification. This is unlikely to be a problem, but for completeness it is mentioned here.

## Version 2.0.1

* Switched to `pyproject.toml`
* Switched to `pytest` as a test runner
* Added wheel builds

## Version 2.0.0

* Backport the logic from Python 3.11's `fromisoformat` methods, instead of Python 3.7's, [#22](https://github.com/movermeyer/backports.datetime_fromisoformat/pull/22)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "backports-datetime-fromisoformat"
version = "2.0.0"
version = "2.0.1b1"
authors = [
{ name="Michael Overmeyer", email="[email protected]" },
]
Expand Down

0 comments on commit 9f341e4

Please sign in to comment.