Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.1.1 #585

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If applicable, add copy/paste the output or attach a screenshots to help explain
- OS: [e.g. Windows / macos / Linux distribution & version]
- Python version [e.g. 3.10.4]
- Git version [e.g. 2.36.0]
- Darker version [e.g. 2.1.0]
- Darker version [e.g. 2.1.1]
- Black version [e.g. 22.3.0]
- other reformatter and linter versions [e.g. `isort==5.10.1`, `mypy==0.942`

Expand Down
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ Unreleased_

These features will be included in the next release:

Added
-----

Fixed
-----


2.1.1_ - 2024-04-16
===================

Added
-----
- In the Darker configuration file under ``[tool.darker]``, the Black configuration
Expand Down
16 changes: 8 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
.. |changelog-badge| image:: https://img.shields.io/badge/-change%20log-purple
:alt: Change log
:target: https://github.com/akaihola/darker/blob/master/CHANGES.rst
.. |next-milestone| image:: https://img.shields.io/github/milestones/progress/akaihola/darker/24?color=red&label=release%202.1.1
.. |next-milestone| image:: https://img.shields.io/github/milestones/progress/akaihola/darker/25?color=red&label=release%202.1.2
:alt: Next milestone
:target: https://github.com/akaihola/darker/milestone/24

Expand Down Expand Up @@ -137,11 +137,11 @@ How?

To install or upgrade, use::

pip install --upgrade darker~=2.1.0
pip install --upgrade darker~=2.1.1

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

conda install -c conda-forge darker~=2.1.0 isort
conda install -c conda-forge darker~=2.1.1 isort
conda update -c conda-forge darker

..
Expand Down Expand Up @@ -656,7 +656,7 @@ do the following:
.. code-block:: yaml

- repo: https://github.com/akaihola/darker
rev: v2.1.0
rev: v2.1.1
hooks:
- id: darker

Expand All @@ -675,7 +675,7 @@ other reformatter/linter tools you use to known compatible versions, for example
.. code-block:: yaml

- repo: https://github.com/akaihola/darker
rev: v2.1.0
rev: v2.1.1
hooks:
- id: darker
args:
Expand Down Expand Up @@ -706,7 +706,7 @@ Note the inclusion of the isort Python package under ``additional_dependencies``
.. code-block:: yaml

- repo: https://github.com/akaihola/darker
rev: v2.1.0
rev: v2.1.1
hooks:
- id: darker
args: [--isort]
Expand Down Expand Up @@ -751,11 +751,11 @@ Create a file named ``.github/workflows/darker.yml`` inside your repository with
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: akaihola/darker@2.1.0
- uses: akaihola/darker@2.1.1
with:
options: "--check --diff --isort --color"
src: "./src"
version: "~=2.1.0"
version: "~=2.1.1"
lint: "flake8,pylint==2.13.1"

There needs to be a working Python environment, set up using ``actions/setup-python``
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ inputs:
required: false
default: "."
version:
description: 'Version of Darker to use, e.g. "~=2.1.0", "2.1.0", "@master"'
description: 'Version of Darker to use, e.g. "~=2.1.1", "2.1.1", "@master"'
required: false
default: "~=2.1.0"
default: "~=2.1.1"
revision:
description: >-
Git revision range to compare when determining modified lines.
Expand Down
2 changes: 1 addition & 1 deletion src/darker/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The version number for Darker is governed by this file"""

__version__ = "2.1.0"
__version__ = "2.1.1"
Loading