tinysemver 2.0.0__tar.gz → 2.0.2__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.
- {tinysemver-2.0.0/tinysemver.egg-info → tinysemver-2.0.2}/PKG-INFO +7 -7
- {tinysemver-2.0.0 → tinysemver-2.0.2}/README.md +6 -6
- {tinysemver-2.0.0 → tinysemver-2.0.2}/pyproject.toml +1 -1
- {tinysemver-2.0.0 → tinysemver-2.0.2/tinysemver.egg-info}/PKG-INFO +7 -7
- {tinysemver-2.0.0 → tinysemver-2.0.2}/LICENSE +0 -0
- {tinysemver-2.0.0 → tinysemver-2.0.2}/setup.cfg +0 -0
- {tinysemver-2.0.0 → tinysemver-2.0.2}/tinysemver.egg-info/SOURCES.txt +0 -0
- {tinysemver-2.0.0 → tinysemver-2.0.2}/tinysemver.egg-info/dependency_links.txt +0 -0
- {tinysemver-2.0.0 → tinysemver-2.0.2}/tinysemver.egg-info/entry_points.txt +0 -0
- {tinysemver-2.0.0 → tinysemver-2.0.2}/tinysemver.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tinysemver
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Tiny Semantic Versioning (SemVer) library, that doesn't depend on 300K lines of JavaScript
|
|
5
5
|
Author-email: Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>, Guillaume de Rouville <31691250+grouville@users.noreply.github.com>
|
|
6
6
|
License: Apache License
|
|
@@ -246,7 +246,7 @@ If you need more control over the default specification, here are more options y
|
|
|
246
246
|
$ tinysemver --verbose \
|
|
247
247
|
--major-verbs 'breaking,break,major' \
|
|
248
248
|
--minor-verbs 'feature,minor,add,new' \
|
|
249
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
249
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
250
250
|
--changelog-file 'CHANGELOG.md' \
|
|
251
251
|
--version-file 'VERSION' \
|
|
252
252
|
--update-version-in 'pyproject.toml' '^version = "(\d+\.\d+\.\d+)"' \
|
|
@@ -262,7 +262,7 @@ Here is an example of passing even more parameters for a project like `stringzil
|
|
|
262
262
|
$ tinysemver --verbose \
|
|
263
263
|
--major-verbs 'breaking,break,major' \
|
|
264
264
|
--minor-verbs 'feature,minor,add,new' \
|
|
265
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
265
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
266
266
|
--changelog-file 'CHANGELOG.md' \
|
|
267
267
|
--version-file 'VERSION' \
|
|
268
268
|
--update-version-in 'pyproject.toml' '^version = "(\d+\.\d+\.\d+)"' \
|
|
@@ -292,7 +292,7 @@ $ tinysemver --verbose \
|
|
|
292
292
|
> + version: 1.3.0 # Only in verbose mode
|
|
293
293
|
> Appending to changelog file: CHANGELOG.md
|
|
294
294
|
> = skipping 250 lines # Only in verbose mode
|
|
295
|
-
> +
|
|
295
|
+
> + adding 30 lines # Only in verbose mode
|
|
296
296
|
```
|
|
297
297
|
|
|
298
298
|
Alternatively, you can just ask for `--help`:
|
|
@@ -324,11 +324,11 @@ jobs:
|
|
|
324
324
|
persist-credentials: false # Only if main branch if protected
|
|
325
325
|
|
|
326
326
|
- name: Run TinySemVer
|
|
327
|
-
uses: ashvardanian/tinysemver@v2
|
|
327
|
+
uses: ashvardanian/tinysemver@v2.0.1
|
|
328
328
|
with:
|
|
329
329
|
major-verbs: 'breaking,break,major'
|
|
330
330
|
minor-verbs: 'feature,minor,add,new'
|
|
331
|
-
patch-verbs: 'fix,patch,bug,improve,docs'
|
|
331
|
+
patch-verbs: 'fix,patch,bug,improve,docs,make'
|
|
332
332
|
changelog-file: 'CHANGELOG.md'
|
|
333
333
|
version-file: 'VERSION'
|
|
334
334
|
update-version-in: 'pyproject.toml:version = "(.*)"' # Use colon instead of space
|
|
@@ -515,7 +515,7 @@ $ wget https://github.com/unum-cloud/usearch/raw/main/include/usearch/index.hpp
|
|
|
515
515
|
$ tinysemver --dry-run --verbose \
|
|
516
516
|
--major-verbs 'breaking,break,major' \
|
|
517
517
|
--minor-verbs 'feature,minor,add,new' \
|
|
518
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
518
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
519
519
|
--version-file 'example/VERSION' \
|
|
520
520
|
--changelog-file 'example/CHANGELOG.md' \
|
|
521
521
|
--update-version-in 'example/CITATION.cff' '^version: (\d+\.\d+\.\d+)' \
|
|
@@ -20,7 +20,7 @@ If you need more control over the default specification, here are more options y
|
|
|
20
20
|
$ tinysemver --verbose \
|
|
21
21
|
--major-verbs 'breaking,break,major' \
|
|
22
22
|
--minor-verbs 'feature,minor,add,new' \
|
|
23
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
23
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
24
24
|
--changelog-file 'CHANGELOG.md' \
|
|
25
25
|
--version-file 'VERSION' \
|
|
26
26
|
--update-version-in 'pyproject.toml' '^version = "(\d+\.\d+\.\d+)"' \
|
|
@@ -36,7 +36,7 @@ Here is an example of passing even more parameters for a project like `stringzil
|
|
|
36
36
|
$ tinysemver --verbose \
|
|
37
37
|
--major-verbs 'breaking,break,major' \
|
|
38
38
|
--minor-verbs 'feature,minor,add,new' \
|
|
39
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
39
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
40
40
|
--changelog-file 'CHANGELOG.md' \
|
|
41
41
|
--version-file 'VERSION' \
|
|
42
42
|
--update-version-in 'pyproject.toml' '^version = "(\d+\.\d+\.\d+)"' \
|
|
@@ -66,7 +66,7 @@ $ tinysemver --verbose \
|
|
|
66
66
|
> + version: 1.3.0 # Only in verbose mode
|
|
67
67
|
> Appending to changelog file: CHANGELOG.md
|
|
68
68
|
> = skipping 250 lines # Only in verbose mode
|
|
69
|
-
> +
|
|
69
|
+
> + adding 30 lines # Only in verbose mode
|
|
70
70
|
```
|
|
71
71
|
|
|
72
72
|
Alternatively, you can just ask for `--help`:
|
|
@@ -98,11 +98,11 @@ jobs:
|
|
|
98
98
|
persist-credentials: false # Only if main branch if protected
|
|
99
99
|
|
|
100
100
|
- name: Run TinySemVer
|
|
101
|
-
uses: ashvardanian/tinysemver@v2
|
|
101
|
+
uses: ashvardanian/tinysemver@v2.0.1
|
|
102
102
|
with:
|
|
103
103
|
major-verbs: 'breaking,break,major'
|
|
104
104
|
minor-verbs: 'feature,minor,add,new'
|
|
105
|
-
patch-verbs: 'fix,patch,bug,improve,docs'
|
|
105
|
+
patch-verbs: 'fix,patch,bug,improve,docs,make'
|
|
106
106
|
changelog-file: 'CHANGELOG.md'
|
|
107
107
|
version-file: 'VERSION'
|
|
108
108
|
update-version-in: 'pyproject.toml:version = "(.*)"' # Use colon instead of space
|
|
@@ -289,7 +289,7 @@ $ wget https://github.com/unum-cloud/usearch/raw/main/include/usearch/index.hpp
|
|
|
289
289
|
$ tinysemver --dry-run --verbose \
|
|
290
290
|
--major-verbs 'breaking,break,major' \
|
|
291
291
|
--minor-verbs 'feature,minor,add,new' \
|
|
292
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
292
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
293
293
|
--version-file 'example/VERSION' \
|
|
294
294
|
--changelog-file 'example/CHANGELOG.md' \
|
|
295
295
|
--update-version-in 'example/CITATION.cff' '^version: (\d+\.\d+\.\d+)' \
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tinysemver"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.2"
|
|
8
8
|
description = "Tiny Semantic Versioning (SemVer) library, that doesn't depend on 300K lines of JavaScript"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tinysemver
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: Tiny Semantic Versioning (SemVer) library, that doesn't depend on 300K lines of JavaScript
|
|
5
5
|
Author-email: Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>, Guillaume de Rouville <31691250+grouville@users.noreply.github.com>
|
|
6
6
|
License: Apache License
|
|
@@ -246,7 +246,7 @@ If you need more control over the default specification, here are more options y
|
|
|
246
246
|
$ tinysemver --verbose \
|
|
247
247
|
--major-verbs 'breaking,break,major' \
|
|
248
248
|
--minor-verbs 'feature,minor,add,new' \
|
|
249
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
249
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
250
250
|
--changelog-file 'CHANGELOG.md' \
|
|
251
251
|
--version-file 'VERSION' \
|
|
252
252
|
--update-version-in 'pyproject.toml' '^version = "(\d+\.\d+\.\d+)"' \
|
|
@@ -262,7 +262,7 @@ Here is an example of passing even more parameters for a project like `stringzil
|
|
|
262
262
|
$ tinysemver --verbose \
|
|
263
263
|
--major-verbs 'breaking,break,major' \
|
|
264
264
|
--minor-verbs 'feature,minor,add,new' \
|
|
265
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
265
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
266
266
|
--changelog-file 'CHANGELOG.md' \
|
|
267
267
|
--version-file 'VERSION' \
|
|
268
268
|
--update-version-in 'pyproject.toml' '^version = "(\d+\.\d+\.\d+)"' \
|
|
@@ -292,7 +292,7 @@ $ tinysemver --verbose \
|
|
|
292
292
|
> + version: 1.3.0 # Only in verbose mode
|
|
293
293
|
> Appending to changelog file: CHANGELOG.md
|
|
294
294
|
> = skipping 250 lines # Only in verbose mode
|
|
295
|
-
> +
|
|
295
|
+
> + adding 30 lines # Only in verbose mode
|
|
296
296
|
```
|
|
297
297
|
|
|
298
298
|
Alternatively, you can just ask for `--help`:
|
|
@@ -324,11 +324,11 @@ jobs:
|
|
|
324
324
|
persist-credentials: false # Only if main branch if protected
|
|
325
325
|
|
|
326
326
|
- name: Run TinySemVer
|
|
327
|
-
uses: ashvardanian/tinysemver@v2
|
|
327
|
+
uses: ashvardanian/tinysemver@v2.0.1
|
|
328
328
|
with:
|
|
329
329
|
major-verbs: 'breaking,break,major'
|
|
330
330
|
minor-verbs: 'feature,minor,add,new'
|
|
331
|
-
patch-verbs: 'fix,patch,bug,improve,docs'
|
|
331
|
+
patch-verbs: 'fix,patch,bug,improve,docs,make'
|
|
332
332
|
changelog-file: 'CHANGELOG.md'
|
|
333
333
|
version-file: 'VERSION'
|
|
334
334
|
update-version-in: 'pyproject.toml:version = "(.*)"' # Use colon instead of space
|
|
@@ -515,7 +515,7 @@ $ wget https://github.com/unum-cloud/usearch/raw/main/include/usearch/index.hpp
|
|
|
515
515
|
$ tinysemver --dry-run --verbose \
|
|
516
516
|
--major-verbs 'breaking,break,major' \
|
|
517
517
|
--minor-verbs 'feature,minor,add,new' \
|
|
518
|
-
--patch-verbs 'fix,patch,bug,improve,docs' \
|
|
518
|
+
--patch-verbs 'fix,patch,bug,improve,docs,make' \
|
|
519
519
|
--version-file 'example/VERSION' \
|
|
520
520
|
--changelog-file 'example/CHANGELOG.md' \
|
|
521
521
|
--update-version-in 'example/CITATION.cff' '^version: (\d+\.\d+\.\d+)' \
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|