Skip to content

Commit

Permalink
Merge pull request #48 from akaihola/release-2.0.0
Browse files Browse the repository at this point in the history
Release 2.0.0
  • Loading branch information
akaihola authored Jul 31, 2024
2 parents 91cdf33 + a926c8c commit c01ccc4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
11 changes: 9 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,20 @@ These features will be included in the next release:

Added
-----
- New exit codes 3 for invalid command line arguments and 123 for unknown failures.
- Display exit code in parentheses after error message.

Fixed
-----


2.0.0_ - 2024-07-31
===================

Added
-----
- New exit codes 3 for invalid command line arguments and 123 for unknown failures.
- Display exit code in parentheses after error message.


1.1.2_ - 2024-07-29
===================

Expand Down
8 changes: 4 additions & 4 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/graylint/blob/master/CHANGES.rst
.. |next-milestone| image:: https://img.shields.io/github/milestones/progress/akaihola/graylint/2?color=red&label=release%201.2.0
.. |next-milestone| image:: https://img.shields.io/github/milestones/progress/akaihola/graylint/2?color=red&label=release%202.0.1
:alt: Next milestone
:target: https://github.com/akaihola/graylint/milestone/3

Expand Down Expand Up @@ -79,7 +79,7 @@ How?

To install or upgrade, use::

pip install --upgrade graylint~=1.1.2
pip install --upgrade graylint~=2.0.0

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

Expand Down Expand Up @@ -381,11 +381,11 @@ Create a file named ``.github/workflows/graylint.yml`` inside your repository wi
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: akaihola/graylint@1.1.2
- uses: akaihola/graylint@2.0.0
with:
options: "-v"
src: "./src"
version: "~=1.1.2"
version: "~=2.0.0"
lint: "flake8,pylint==2.13.1"
There needs to be a working Python environment, set up using ``actions/setup-python``
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
required: false
default: "."
version:
description: 'Version of Graylint to use, e.g. "~=1.1.2", "1.0.0", "@main"'
description: 'Version of Graylint to use, e.g. "~=2.0.0", "1.0.0", "@main"'
required: false
default: "@main"
revision:
Expand Down
2 changes: 1 addition & 1 deletion src/graylint/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The version number for Graylint is governed by this file"""

__version__ = "1.1.2"
__version__ = "2.0.0"

0 comments on commit c01ccc4

Please sign in to comment.