From cea7a9024b46e2854d24742f32afbc29cf9993c8 Mon Sep 17 00:00:00 2001 From: Weiwei Wang Date: Wed, 21 Feb 2024 17:36:22 +0800 Subject: [PATCH] bump version --- CHANGELOG.md | 10 +++++++++- junitparser/__init__.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d810acb..f18542e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ # Changelog -## [3.1.0] - 2023-04-22 +## [3.1.2] - 2024-02-21 +### Fixed +- Excluded `TestCase` and `TestSuite` from pytest discovery. Thanks to @kurtsansom +### Added +- More type annotations. + +## [3.1.1] - 2023-12-26 ### Fixed - Sphinx documentation, thanks to @cmarqu - type check by adding `py.typed` file. +### Other +- Tests converted to `pytest` ## [3.1.0] - 2023-04-22 ### Added diff --git a/junitparser/__init__.py b/junitparser/__init__.py index befc662..b3b6f3a 100644 --- a/junitparser/__init__.py +++ b/junitparser/__init__.py @@ -14,4 +14,4 @@ FloatAttr, ) -version = "3.1.1" +version = "3.1.2"