Skip to content

Commit 2bdfd4e

Browse files
chore(release): 0.36.0 [skip ci]
# [0.36.0](v0.35.0...v0.36.0) (2025-09-13) ### Bug Fixes * **deps:** update dependency requests to v2.32.4 [security] ([#694](#694)) ([f2aaf18](f2aaf18)) ### Features * better file detection to allow more files with text plugin ([#702](#702)) ([b17e3d4](b17e3d4))
1 parent 95ef372 commit 2bdfd4e

File tree

11 files changed

+25
-15
lines changed

11 files changed

+25
-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.35.0
2+
current_version = 0.36.0
33
commit = False
44
tag = False
55

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# [0.36.0](https://github.com/andreoliwa/nitpick/compare/v0.35.0...v0.36.0) (2025-09-13)
2+
3+
### Bug Fixes
4+
5+
- **deps:** update dependency requests to v2.32.4 [security] ([#694](https://github.com/andreoliwa/nitpick/issues/694)) ([f2aaf18](https://github.com/andreoliwa/nitpick/commit/f2aaf18a1376325081d3c93e2f4dbe8a37949ca9))
6+
7+
### Features
8+
9+
- better file detection to allow more files with text plugin ([#702](https://github.com/andreoliwa/nitpick/issues/702)) ([b17e3d4](https://github.com/andreoliwa/nitpick/commit/b17e3d484f021df42fdf91200d24d83fab8dbdaa))
10+
111
# [0.35.0](https://github.com/andreoliwa/nitpick/compare/v0.34.0...v0.35.0) (2023-12-31)
212

313
### 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.35.0
402+
rev: v0.36.0
403403
hooks:
404404
- id: nitpick
405405

@@ -425,7 +425,7 @@ If you use `MegaLinter <https://megalinter.github.io/>`_ you can run Nitpick as
425425
.. code-block:: yaml
426426
427427
PLUGINS:
428-
- https://raw.githubusercontent.com/andreoliwa/nitpick/v0.35.0/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml
428+
- https://raw.githubusercontent.com/andreoliwa/nitpick/v0.36.0/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml
429429
ENABLE_LINTERS:
430430
- NITPICK
431431

docs/conf.py

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

2222
# The short X.Y version
23-
version = "0.35.0"
23+
version = "0.36.0"
2424
# The full version, including alpha/beta/rc tags
2525
release = version
2626

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.35.0/nitpick-style.toml"
52+
style = "github://andreoliwa/nitpick@v0.36.0/nitpick-style.toml"
5353
# or
54-
style = "gh://andreoliwa/nitpick@v0.35.0/nitpick-style.toml"
54+
style = "gh://andreoliwa/nitpick@v0.36.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.35.0/nitpick-style.toml"
81+
style = "https://github.com/andreoliwa/nitpick/blob/v0.36.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.35.0/nitpick-style.toml"
88+
style = "https://raw.githubusercontent.com/andreoliwa/nitpick/v0.36.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.35.0
67+
rev: v0.36.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.35.0/mega-linter-plugin-nitpick/nitpick.megalinter-descriptor.yml
110+
- https://raw.githubusercontent.com/andreoliwa/nitpick/v0.36.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.35.0
16+
- RUN pip install nitpick==0.36.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.35.0/nitpick-style.toml
2+
# https://github.com/andreoliwa/nitpick/blob/v0.36.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.35.0",
3+
"version": "0.36.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.35.0"
33+
version = "0.36.0"
3434

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

0 commit comments

Comments
 (0)