commitfmt-darwin 1.0.3__tar.gz → 1.0.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commitfmt_darwin
3
- Version: 1.0.3
3
+ Version: 1.0.9
4
4
  Summary: Utility for formatting and verifying the commit message.
5
5
  Author-email: Mikhael Khrustik <misha@myrt.co>
6
6
  License: MIT
@@ -13,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
16
17
  Classifier: Operating System :: MacOS
17
18
  Requires-Python: >=3.9
18
19
  Description-Content-Type: text/markdown
@@ -324,7 +325,7 @@ To enforce conventional commits, you can use the following configuration:
324
325
 
325
326
  ```toml
326
327
  [lint.header]
327
- type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs"]
328
+ type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs", "revert"]
328
329
  description-case = "lower-first"
329
330
  description-max-length = 72
330
331
  description-full-stop = true
@@ -358,3 +359,9 @@ commitfmt --from HEAD~20
358
359
  # or
359
360
  commitfmt --from 1234567890 --to 1234567890
360
361
  ```
362
+
363
+ ## Ignoring commits
364
+
365
+ commitfmt ignores commit messages that start with `Merge` or `Revert` to avoid breaking standard git processes.
366
+
367
+ This happens both when formatting a single commit and when linting a history.
@@ -305,7 +305,7 @@ To enforce conventional commits, you can use the following configuration:
305
305
 
306
306
  ```toml
307
307
  [lint.header]
308
- type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs"]
308
+ type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs", "revert"]
309
309
  description-case = "lower-first"
310
310
  description-max-length = 72
311
311
  description-full-stop = true
@@ -339,3 +339,9 @@ commitfmt --from HEAD~20
339
339
  # or
340
340
  commitfmt --from 1234567890 --to 1234567890
341
341
  ```
342
+
343
+ ## Ignoring commits
344
+
345
+ commitfmt ignores commit messages that start with `Merge` or `Revert` to avoid breaking standard git processes.
346
+
347
+ This happens both when formatting a single commit and when linting a history.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commitfmt_darwin
3
- Version: 1.0.3
3
+ Version: 1.0.9
4
4
  Summary: Utility for formatting and verifying the commit message.
5
5
  Author-email: Mikhael Khrustik <misha@myrt.co>
6
6
  License: MIT
@@ -13,6 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Programming Language :: Python :: 3.14
16
17
  Classifier: Operating System :: MacOS
17
18
  Requires-Python: >=3.9
18
19
  Description-Content-Type: text/markdown
@@ -324,7 +325,7 @@ To enforce conventional commits, you can use the following configuration:
324
325
 
325
326
  ```toml
326
327
  [lint.header]
327
- type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs"]
328
+ type-enum = ["chore", "ci", "feat", "fix", "refactor", "style", "test", "docs", "revert"]
328
329
  description-case = "lower-first"
329
330
  description-max-length = 72
330
331
  description-full-stop = true
@@ -358,3 +359,9 @@ commitfmt --from HEAD~20
358
359
  # or
359
360
  commitfmt --from 1234567890 --to 1234567890
360
361
  ```
362
+
363
+ ## Ignoring commits
364
+
365
+ commitfmt ignores commit messages that start with `Merge` or `Revert` to avoid breaking standard git processes.
366
+
367
+ This happens both when formatting a single commit and when linting a history.
@@ -6,7 +6,7 @@ authors = [
6
6
  description = "Utility for formatting and verifying the commit message."
7
7
  readme = "README.md"
8
8
  requires-python = ">=3.9"
9
- version = "1.0.3"
9
+ version = "1.0.9"
10
10
  keywords = ["git", "hook"]
11
11
  license = {text = "MIT"}
12
12
  classifiers = [
@@ -18,6 +18,7 @@ classifiers = [
18
18
  "Programming Language :: Python :: 3.11",
19
19
  "Programming Language :: Python :: 3.12",
20
20
  "Programming Language :: Python :: 3.13",
21
+ "Programming Language :: Python :: 3.14",
21
22
  "Operating System :: MacOS",
22
23
  ]
23
24