Skip to content

Commit a1373f0

Browse files
chore(release): 0.38.0 [skip ci]
# [0.38.0](v0.37.0...v0.38.0) (2025-10-17) ### Features * default pre-commit hook now fixes all files ([da5669c](da5669c))
1 parent da5669c commit a1373f0

File tree

11 files changed

+21
-15
lines changed

11 files changed

+21
-15
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.37.0
2+
current_version = 0.38.0
33
commit = False
44
tag = False
55

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [0.38.0](https://github.com/andreoliwa/nitpick/compare/v0.37.0...v0.38.0) (2025-10-17)
2+
3+
### Features
4+
5+
- default pre-commit hook now fixes all files ([da5669c](https://github.com/andreoliwa/nitpick/commit/da5669c6d27d79106c3bf397961323ae3f6bfcec))
6+
17
# [0.37.0](https://github.com/andreoliwa/nitpick/compare/v0.36.0...v0.37.0) (2025-10-10)
28

39
### Bug Fixes

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ this to the ``.pre-commit-config.yaml`` in your repository::
399399

400400
repos:
401401
- repo: https://github.com/andreoliwa/nitpick
402-
rev: v0.37.0
402+
rev: v0.38.0
403403
hooks:
404404
- id: nitpick-suggest
405405
- id: nitpick
@@ -427,7 +427,7 @@ If you use `MegaLinter <https://megalinter.github.io/>`_ you can run Nitpick as
427427
.. code-block:: yaml
428428
429429
PLUGINS:
430-
- https://raw.githubusercontent.com/andreoliwa/nitpick/v0.37.0/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml
430+
- https://raw.githubusercontent.com/andreoliwa/nitpick/v0.38.0/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml
431431
ENABLE_LINTERS:
432432
- NITPICK
433433

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
author = "W. Augusto Andreoli"
1919

2020
# The short X.Y version
21-
version = "0.37.0"
21+
version = "0.38.0"
2222
# The full version, including alpha/beta/rc tags
2323
release = version
2424

docs/configuration.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ GitHub URL scheme (``github://`` or ``gh://``) pinned to a specific version:
4949
.. code-block:: toml
5050
5151
[tool.nitpick]
52-
style = "github://andreoliwa/nitpick@v0.37.0/nitpick-style.toml"
52+
style = "github://andreoliwa/nitpick@v0.38.0/nitpick-style.toml"
5353
# or
54-
style = "gh://andreoliwa/nitpick@v0.37.0/nitpick-style.toml"
54+
style = "gh://andreoliwa/nitpick@v0.38.0/nitpick-style.toml"
5555
5656
The ``@`` syntax is used to get a Git reference (commit, tag, branch).
5757
It is similar to the syntax used by ``pip`` and ``pipx``:
@@ -78,14 +78,14 @@ A regular GitHub URL also works. The corresponding raw URL will be used.
7878
.. code-block:: toml
7979
8080
[tool.nitpick]
81-
style = "https://github.com/andreoliwa/nitpick/blob/v0.37.0/nitpick-style.toml"
81+
style = "https://github.com/andreoliwa/nitpick/blob/v0.38.0/nitpick-style.toml"
8282
8383
Or use the raw GitHub URL directly:
8484

8585
.. code-block:: toml
8686
8787
[tool.nitpick]
88-
style = "https://raw.githubusercontent.com/andreoliwa/nitpick/v0.37.0/nitpick-style.toml"
88+
style = "https://raw.githubusercontent.com/andreoliwa/nitpick/v0.38.0/nitpick-style.toml"
8989
9090
You can also use the raw URL of a `GitHub Gist <https://gist.github.com>`_:
9191

docs/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ If you use pre-commit_ on your project, add this to the ``.pre-commit-config.yam
6464
6565
repos:
6666
- repo: https://github.com/andreoliwa/nitpick
67-
rev: v0.37.0
67+
rev: v0.38.0
6868
hooks:
6969
- id: nitpick-suggest
7070
- id: nitpick
@@ -107,7 +107,7 @@ If you use `MegaLinter <https://megalinter.github.io/>`_ you can run Nitpick as
107107
.. code-block:: yaml
108108
109109
PLUGINS:
110-
- https://raw.githubusercontent.com/andreoliwa/nitpick/v0.37.0/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml
110+
- https://raw.githubusercontent.com/andreoliwa/nitpick/v0.38.0/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml
111111
ENABLE_LINTERS:
112112
- NITPICK
113113

mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ linters:
1313
name: NITPICK
1414
install:
1515
dockerfile:
16-
- RUN pip install nitpick==0.37.0
16+
- RUN pip install nitpick==0.38.0
1717
examples:
1818
- "nitpick check"
1919
- "nitpick fix"

nitpick-style.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Default style file for nitpick
2-
# https://github.com/andreoliwa/nitpick/blob/v0.37.0/nitpick-style.toml
2+
# https://github.com/andreoliwa/nitpick/blob/v0.38.0/nitpick-style.toml
33
# Kept here for compatibility, if someone is still accessing the file via GitHub URL.
44
# This style just includes the built-in preset shipped with Nitpick.
55

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nitpick",
3-
"version": "0.37.0",
3+
"version": "0.38.0",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/andreoliwa/nitpick.git"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ license = "MIT"
3030
name = "nitpick"
3131
readme = "README.rst"
3232
repository = "https://github.com/andreoliwa/nitpick"
33-
version = "0.37.0"
33+
version = "0.38.0"
3434

3535
[tool.poetry.dependencies]
3636
attrs = ">=20.1.0" # attr.define introduced in this version

0 commit comments

Comments
 (0)