Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.12.3 #152

Merged
merged 2 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Changelog
=========

* :release:`0.12.3 <2023-12-20>`
* :bug:`128` Properly handle assertion failures during setUp/tearDown
* :support:`145` Support Python 3.12 (and drop 3.8)
* :release:`0.12.2 <2023-12-20>`
Expand Down
2 changes: 1 addition & 1 deletion marbles/core/marbles/core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2
0.12.3
2 changes: 1 addition & 1 deletion marbles/core/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = file: marbles/core/VERSION
author = Jane Adams, Leif Walsh
author_email = [email protected], [email protected]
url = https://github.com/twosigma/marbles
download_url = https://github.com/twosigma/marbles/archive/0.12.2.tar.gz
download_url = https://github.com/twosigma/marbles/archive/0.12.3.tar.gz
description = A unittest extension that provides additional information on test failure
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
Expand Down
2 changes: 1 addition & 1 deletion marbles/mixins/marbles/mixins/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.2
0.12.3
2 changes: 1 addition & 1 deletion marbles/mixins/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = file: marbles/mixins/VERSION
author = Jane Adams, Leif Walsh
author_email = [email protected], [email protected]
url = https://github.com/twosigma/marbles
download_url = https://github.com/twosigma/marbles/archive/0.12.2.tar.gz
download_url = https://github.com/twosigma/marbles/archive/0.12.3.tar.gz
description = Semantically-rich assertions for use in marbles and unittest test cases
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[bumpversion]
current_version = 0.12.2
current_version = 0.12.3
commit = True
tag = False

[metadata]
name = marbles
version = 0.12.2
version = 0.12.3
author = Jane Adams, Leif Walsh
author_email = [email protected], [email protected]
url = https://github.com/twosigma/marbles
download_url = https://github.com/twosigma/marbles/archive/0.12.2.tar.gz
download_url = https://github.com/twosigma/marbles/archive/0.12.3.tar.gz
description = Read better test failures
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
Expand Down