Skip to content

Commit

Permalink
release new version! also update precommit and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
dannysepler committed Sep 17, 2021
1 parent 344f4d6 commit 45e0569
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repos:
- id: add-trailing-comma
args: [--py36-plus]
- repo: https://github.com/asottile/pyupgrade
rev: v2.21.0
rev: v2.26.0
hooks:
- id: pyupgrade
args: [--py36-plus]
Expand All @@ -36,7 +36,7 @@ repos:
- id: mypy
exclude: ^tests/
- repo: https://github.com/pycqa/isort
rev: 5.9.2
rev: 5.9.3
hooks:
- id: isort
name: isort
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. This projec

## [Unreleased]

## [1.0.6] - September 16th 2021

- Fix edge case where commas in multiline asserts don't have trailing slashes but should
- Two spaces between trailing slashes and inline comments

## [1.0.5] - July 26th 2021

- If assert is alone, combine the next line with it
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ self.assertEqual( # assert a == \
)

self.assertEqual( # assert a == \
a, # b,
a, # b, \
b, # 'oh no!'
msg='oh no!'
)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pytestify
version = 1.0.5
version = 1.0.6
description = Automatically convert unittests to pytest
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down

0 comments on commit 45e0569

Please sign in to comment.