forked from akaihola/darker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request akaihola#585 from akaihola/release-2.1.1
Release 2.1.1
- Loading branch information
Showing
5 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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 | ||
|
||
.. | ||
|
@@ -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 | ||
|
@@ -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: | ||
|
@@ -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] | ||
|
@@ -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/[email protected].0 | ||
- uses: akaihola/[email protected].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`` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |