Skip to content

Commit 6e363e7

Browse files
authored
Merge pull request #438 from akaihola/release-1.6.1
2 parents bb4c1e5 + c6d6727 commit 6e363e7

File tree

5 files changed

+24
-14
lines changed

5 files changed

+24
-14
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
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.6.0]
39+
- Darker version [e.g. 1.6.1]
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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ Unreleased_
33

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

6+
Added
7+
-----
8+
9+
Fixed
10+
-----
11+
12+
13+
1.6.1_ - 2022-12-28
14+
===================
15+
616
Added
717
-----
818
- Declare Python 3.11 as supported in package metadata.

README.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
.. |changelog-badge| image:: https://img.shields.io/badge/-change%20log-purple
2323
:alt: Change log
2424
.. _changelog-badge: https://github.com/akaihola/darker/blob/master/CHANGES.rst
25-
.. |next-milestone| image:: https://img.shields.io/github/milestones/progress/akaihola/darker/18?color=red&label=release%201.6.1
25+
.. |next-milestone| image:: https://img.shields.io/github/milestones/progress/akaihola/darker/19?color=red&label=release%201.7.0
2626
:alt: Next milestone
27-
.. _next-milestone: https://github.com/akaihola/darker/milestone/18
27+
.. _next-milestone: https://github.com/akaihola/darker/milestone/19
2828

2929

3030
What?
@@ -130,11 +130,11 @@ How?
130130

131131
To install or upgrade, use::
132132

133-
pip install --upgrade darker~=1.6.0
133+
pip install --upgrade darker~=1.6.1
134134

135135
Or, if you're using Conda_ for package management::
136136

137-
conda install -c conda-forge darker~=1.6.0 isort
137+
conda install -c conda-forge darker~=1.6.1 isort
138138
conda update -c conda-forge darker
139139

140140
..
@@ -576,7 +576,7 @@ do the following:
576576
.. code-block:: yaml
577577
578578
- repo: https://github.com/akaihola/darker
579-
rev: 1.6.0
579+
rev: 1.6.1
580580
hooks:
581581
- id: darker
582582
@@ -595,7 +595,7 @@ other reformatter/linter tools you use to known compatible versions, for example
595595
.. code-block:: yaml
596596
597597
- repo: https://github.com/akaihola/darker
598-
rev: 1.6.0
598+
rev: 1.6.1
599599
hooks:
600600
- id: darker
601601
args:
@@ -623,7 +623,7 @@ Note the inclusion of the isort Python package under ``additional_dependencies``
623623
.. code-block:: yaml
624624
625625
- repo: https://github.com/akaihola/darker
626-
rev: 1.6.0
626+
rev: 1.6.1
627627
hooks:
628628
- id: darker
629629
args: [--isort]
@@ -664,11 +664,11 @@ Create a file named ``.github/workflows/darker.yml`` inside your repository with
664664
with:
665665
fetch-depth: 0
666666
- uses: actions/setup-python@v4
667-
- uses: akaihola/[email protected].0
667+
- uses: akaihola/[email protected].1
668668
with:
669669
options: "--check --diff --isort --color"
670670
src: "./src"
671-
version: "~=1.6.0"
671+
version: "~=1.6.1"
672672
lint: "flake8,pylint==2.13.1"
673673
674674
There needs to be a working Python environment, set up using ``actions/setup-python``

action.yml

Lines changed: 3 additions & 3 deletions
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.6.0", "1.6.0", "@master"'
17+
description: 'Version of Darker to use, e.g. "~=1.6.1", "1.6.1", "@master"'
1818
required: false
19-
default: "~=1.6.0"
19+
default: "~=1.6.1"
2020
revision:
2121
description: >-
2222
Git revision range to compare when determining modified lines.
@@ -37,7 +37,7 @@ runs:
3737
steps:
3838
- name: Commit Range
3939
id: commit-range
40-
uses: akaihola/darker/.github/actions/[email protected].0
40+
uses: akaihola/darker/.github/actions/[email protected].1
4141
- name: Run Darker
4242
run: |
4343
# Exists since using github.action_path + path to main script doesn't

src/darker/version.py

Lines changed: 1 addition & 1 deletion
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.6.0"
3+
__version__ = "1.6.1"

0 commit comments

Comments
 (0)