Skip to content

Commit

Permalink
Bump version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sirosen committed Jul 11, 2023
1 parent b2d0879 commit a5c16a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
---------

8.3.0 (unreleased)
8.3.0 (2023-07-10)
******************

Features:
Expand Down
2 changes: 1 addition & 1 deletion src/webargs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from webargs.core import ValidationError
from webargs import fields

__version__ = "8.2.0"
__version__ = "8.3.0"
__parsed_version__ = Version(__version__)
__version_info__: tuple[int, int, int] | tuple[
int, int, int, str, int
Expand Down

3 comments on commit a5c16a9

@lafrech
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Strangely, the build log indicates PyPI release failed but it looks like it succeeded.

@sirosen
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That was my fault for doing things oddly.

I pushed the tag but didn't push to dev. When I realized my mistake, I rebased, pushed dev, and replaced the 8.3.0 tag.
There weren't any semantic differences between the previous 8.3.0 tag and the current one, so I don't think it's an issue.

Not my proudest moment, but just a side-effect of not having done a release in about a year.

@lafrech
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, I figured it could be something along those lines. Not an issue at all. I'd have done the same.

Just thought I'd ask in case someone (my future self?) would wonder.

Thanks for the release.

Please sign in to comment.