Skip to content

Commit d90b545

Browse files
authored
Merge pull request #538 from akaihola/release-1.7.3
Release 1.7.3
2 parents 1a1c908 + ef10f1a commit d90b545

File tree

5 files changed

+27
-13
lines changed

5 files changed

+27
-13
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ If applicable, add copy/paste the output or attach a screenshots to help explain
3636
- OS: [e.g. Windows / macos / Linux distribution & version]
3737
- Python version [e.g. 3.10.4]
3838
- Git version [e.g. 2.36.0]
39-
- Darker version [e.g. 1.7.2]
39+
- Darker version [e.g. 1.7.3]
4040
- Black version [e.g. 22.3.0]
4141
- other reformatter and linter versions [e.g. `isort==5.10.1`, `mypy==0.942`
4242

CHANGES.rst

+16-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,27 @@ Unreleased_
33

44
These features will be included in the next release:
55

6+
Added
7+
-----
8+
9+
Fixed
10+
-----
11+
12+
13+
1.7.3_ - 2024-02-27
14+
===================
15+
616
Added
717
-----
818
- Limit Black to versions before 24.2 until the incompatibility is resolved.
919
- Stop testing on Python 3.7. Note: dropping support to be done in a separate PR.
1020

1121
Fixed
1222
-----
13-
- Typo in README.
23+
- Typos in README.
24+
- Usage of the Black ``gen_python_files(gitignore_dict=...)`` parameter.
25+
- ``show_capture`` option in Pytest configuration.
26+
- Ignore some linter messages by recent versions of linters used in CI builds.
1427

1528

1629
1.7.2_ - 2023-07-12
@@ -498,7 +511,8 @@ Added
498511
-----
499512
- Initial implementation
500513

501-
.. _Unreleased: https://github.com/akaihola/darker/compare/1.7.2...HEAD
514+
.. _Unreleased: https://github.com/akaihola/darker/compare/1.7.3...HEAD
515+
.. _1.7.3: https://github.com/akaihola/darker/compare/1.7.2...1.7.3
502516
.. _1.7.2: https://github.com/akaihola/darker/compare/1.7.1...1.7.2
503517
.. _1.7.1: https://github.com/akaihola/darker/compare/1.7.0...1.7.1
504518
.. _1.7.0: https://github.com/akaihola/darker/compare/1.6.1...1.7.0

README.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ How?
137137

138138
To install or upgrade, use::
139139

140-
pip install --upgrade darker~=1.7.2
140+
pip install --upgrade darker~=1.7.3
141141

142142
Or, if you're using Conda_ for package management::
143143

144-
conda install -c conda-forge darker~=1.7.2 isort
144+
conda install -c conda-forge darker~=1.7.3 isort
145145
conda update -c conda-forge darker
146146

147147
..
@@ -638,7 +638,7 @@ do the following:
638638
.. code-block:: yaml
639639
640640
- repo: https://github.com/akaihola/darker
641-
rev: 1.7.2
641+
rev: 1.7.3
642642
hooks:
643643
- id: darker
644644
@@ -657,7 +657,7 @@ other reformatter/linter tools you use to known compatible versions, for example
657657
.. code-block:: yaml
658658
659659
- repo: https://github.com/akaihola/darker
660-
rev: 1.7.2
660+
rev: 1.7.3
661661
hooks:
662662
- id: darker
663663
args:
@@ -688,7 +688,7 @@ Note the inclusion of the isort Python package under ``additional_dependencies``
688688
.. code-block:: yaml
689689
690690
- repo: https://github.com/akaihola/darker
691-
rev: 1.7.2
691+
rev: 1.7.3
692692
hooks:
693693
- id: darker
694694
args: [--isort]
@@ -733,11 +733,11 @@ Create a file named ``.github/workflows/darker.yml`` inside your repository with
733733
with:
734734
fetch-depth: 0
735735
- uses: actions/setup-python@v5
736-
- uses: akaihola/darker@1.7.2
736+
- uses: akaihola/darker@1.7.3
737737
with:
738738
options: "--check --diff --isort --color"
739739
src: "./src"
740-
version: "~=1.7.2"
740+
version: "~=1.7.3"
741741
lint: "flake8,pylint==2.13.1"
742742
743743
There needs to be a working Python environment, set up using ``actions/setup-python``

action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ inputs:
1414
required: false
1515
default: "."
1616
version:
17-
description: 'Version of Darker to use, e.g. "~=1.7.2", "1.7.2", "@master"'
17+
description: 'Version of Darker to use, e.g. "~=1.7.3", "1.7.3", "@master"'
1818
required: false
19-
default: "~=1.7.2"
19+
default: "~=1.7.3"
2020
revision:
2121
description: >-
2222
Git revision range to compare when determining modified lines.

src/darker/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""The version number for Darker is governed by this file"""
22

3-
__version__ = "1.7.2"
3+
__version__ = "1.7.3"

0 commit comments

Comments
 (0)