Skip to content

Commit

Permalink
update version info
Browse files Browse the repository at this point in the history
  • Loading branch information
weiwei committed Jan 11, 2021
1 parent 47a1596 commit 3f6565a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@

## [2.0.0] - 2020-11-28
### Breaking
- `TestCase.result` is now a list instead of a single item.
- `TestCase.result` is now a list instead of a single item. `Failure`, `Skip`,
etc. are all treated as results.

### Added
- `TestCase` constructor supports `time` and `classname` as params.
- `Result` object supports `text` attribute.
- Handles localized timestamps. Thanks to @ppalucha

## [1.6.3] - 2020-11-24
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion junitparser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
FloatAttr,
)

version = "2.0.0b1"
version = "2.0.0"
2 changes: 1 addition & 1 deletion tests/test_general.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
try:
locale.setlocale(locale.LC_NUMERIC, 'en_US.UTF-8')
has_us_locale = True
except locale.Error:
except locale.Error: # pragma: no cover
has_us_locale = False


Expand Down

0 comments on commit 3f6565a

Please sign in to comment.