-
Notifications
You must be signed in to change notification settings - Fork 9
Commit 27cf3b2
authored
Bump pydoclint from 0.6.0 to 0.6.4 (#402)
Bumps [pydoclint](https://github.com/jsh9/pydoclint) from 0.6.0 to
0.6.4.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jsh9/pydoclint/releases">pydoclint's
releases</a>.</em></p>
<blockquote>
<h2>0.6.4</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix a bug in decomposing tuples in docstrings by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/227">jsh9/pydoclint#227</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.3...0.6.4">https://github.com/jsh9/pydoclint/compare/0.6.3...0.6.4</a></p>
<h2>0.6.3</h2>
<h2>What's Changed</h2>
<ul>
<li>New violation code D504 by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/220">jsh9/pydoclint#220</a></li>
<li>Start enforcing LN002 linter rule by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/221">jsh9/pydoclint#221</a></li>
<li>Add --ignore-private-args option by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/225">jsh9/pydoclint#225</a></li>
<li>Fix typo in flake8 config; fix LN001/002 violations by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/226">jsh9/pydoclint#226</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.2...0.6.3">https://github.com/jsh9/pydoclint/compare/0.6.2...0.6.3</a></p>
<h2>0.6.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Throw error when user provides no paths by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/218">jsh9/pydoclint#218</a></li>
<li>Fix missing config option
onlyAttrsWithClassVarAreTreatedAsClassAttrs by <a
href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/219">jsh9/pydoclint#219</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.1...0.6.2">https://github.com/jsh9/pydoclint/compare/0.6.1...0.6.2</a></p>
<h2>0.6.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Migrate to pyproject.toml by <a
href="https://github.com/pechersky"><code>@pechersky</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/214">jsh9/pydoclint#214</a></li>
<li>Revert "Migrate to pyproject.toml (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/214">#214</a>)"
by <a href="https://github.com/jsh9"><code>@jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/217">jsh9/pydoclint#217</a></li>
<li>Include AssertionError in Raises section by <a
href="https://github.com/pechersky"><code>@pechersky</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/215">jsh9/pydoclint#215</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/pechersky"><code>@pechersky</code></a>
made their first contribution in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/214">jsh9/pydoclint#214</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.6.0...0.6.1">https://github.com/jsh9/pydoclint/compare/0.6.0...0.6.1</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md">pydoclint's
changelog</a>.</em></p>
<blockquote>
<h2>[0.6.4] - 2025-03-30</h2>
<ul>
<li>Fixed
<ul>
<li>A bug with tuple decomposition in docstrings</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.3...0.6.4">https://github.com/jsh9/pydoclint/compare/0.6.3...0.6.4</a></li>
</ul>
</li>
</ul>
<h2>[0.6.3] - 2025-03-30</h2>
<ul>
<li>Added
<ul>
<li>Added <code>DOC504</code> and a config option
<code>--should-declare-assert-error-if-assert-statement-exists</code>.
If this option
is True and a function has an <code>assert</code> statement, an
<code>AssertError</code>
declaration is required in the docstring. Otherwise <code>DOC504</code>
is raised.
(This changes the behavior introduced in v0.6.1.)</li>
<li>Added a new config option <code>--ignore-private-args</code>
(default to <code>False</code>)</li>
</ul>
</li>
<li>Changed
<ul>
<li>Canceled the ignoring of <code>LN002</code> violation in flake8
config in tox</li>
<li>Fix a typo in maximum line length setting in flake8 config in
tox</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.2...0.6.3">https://github.com/jsh9/pydoclint/compare/0.6.2...0.6.3</a></li>
</ul>
</li>
</ul>
<h2>[0.6.2] - 2025-02-17</h2>
<ul>
<li>Fixed
<ul>
<li>An issue where no error was thrown when the user does not supply a
path</li>
<li>A bug where
<code>--only-attrs-with-ClassVar-are-treated-as-class-attrs</code> is
not
properly passed to the visitor in the flake8 mode</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.1...0.6.2">https://github.com/jsh9/pydoclint/compare/0.6.1...0.6.2</a></li>
</ul>
</li>
</ul>
<h2>[0.6.1] - 2025-02-16</h2>
<ul>
<li>Changed
<ul>
<li>Now if a function as an <code>assert</code> statement, an
<code>AssertError</code> declaration is
by default required in the docstring's "Asserts" section (if
relevant
config options to check raises/assertions are turned on)</li>
</ul>
</li>
<li>Full diff
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.6.0...0.6.1">https://github.com/jsh9/pydoclint/compare/0.6.0...0.6.1</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/commit/e47877dfea11c318b8440b0ce91f6d4b881fcb55"><code>e47877d</code></a>
Fix a bug in decomposing tuples in docstrings (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/227">#227</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/dd09efd59ccc8667eba96906356c36cfa6b55f2f"><code>dd09efd</code></a>
Fix typo in flake8 config; fix LN001/002 violations (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/226">#226</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/1b2de9ed67be4c9fdc846fe5b0d9c29462d75ce3"><code>1b2de9e</code></a>
Add --ignore-private-args option (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/225">#225</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/3cf1df0e5735c853cb629f5b25ccd10edf06329a"><code>3cf1df0</code></a>
Start enforcing LN002 linter rule (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/221">#221</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/20a40294f53272075fd1349f20193417f8fa28a6"><code>20a4029</code></a>
New violation code D504 (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/220">#220</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/193dc552ea02152d85af6675d10a3e19b66b33fe"><code>193dc55</code></a>
Fix missing config option onlyAttrsWithClassVarAreTreatedAsClassAttrs
(<a
href="https://redirect.github.com/jsh9/pydoclint/issues/219">#219</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/981a0b1b4d29bbb758baec7d31acfdae57be61ee"><code>981a0b1</code></a>
Throw error when user provides no paths (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/218">#218</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/299a57c94337d684280506a4287d173d76f273d5"><code>299a57c</code></a>
Update documentation on --ignore-underscore-args option</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/b05a41ac5d300e95b893ba3ffdb2aa63a64c2f8b"><code>b05a41a</code></a>
Update documentation</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/4a1608839d2945be45cb30d4d96396c38d480217"><code>4a16088</code></a>
Include AssertionError in Raises section (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/215">#215</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/jsh9/pydoclint/compare/0.6.0...0.6.4">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>File tree
Expand file treeCollapse file tree
1 file changed
+1
-1
lines changedOpen diff view settings
Filter options
Expand file treeCollapse file tree
1 file changed
+1
-1
lines changedOpen diff view settings
Collapse file
+1-1Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| |||
0 commit comments