ics-query 0.3.4__py3-none-any.whl → 0.4.7__py3-none-any.whl
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.
- ics_query/_version.py +2 -2
- ics_query/version.py +4 -0
- {ics_query-0.3.4.dist-info → ics_query-0.4.7.dist-info}/METADATA +15 -5
- {ics_query-0.3.4.dist-info → ics_query-0.4.7.dist-info}/RECORD +7 -7
- {ics_query-0.3.4.dist-info → ics_query-0.4.7.dist-info}/WHEEL +0 -0
- {ics_query-0.3.4.dist-info → ics_query-0.4.7.dist-info}/entry_points.txt +0 -0
- {ics_query-0.3.4.dist-info → ics_query-0.4.7.dist-info}/licenses/LICENSE +0 -0
ics_query/_version.py
CHANGED
ics_query/version.py
CHANGED
|
@@ -18,6 +18,7 @@ try:
|
|
|
18
18
|
except ModuleNotFoundError:
|
|
19
19
|
__version__ = version = "0.0dev0"
|
|
20
20
|
__version_tuple__ = version_tuple = (0, 0, "dev0")
|
|
21
|
+
import sys
|
|
21
22
|
from importlib.metadata import version as get_version
|
|
22
23
|
|
|
23
24
|
cli_version = f"""{__version__}
|
|
@@ -40,6 +41,9 @@ for module in modules:
|
|
|
40
41
|
except ModuleNotFoundError: # noqa: PERF203
|
|
41
42
|
cli_version += f"{module}: not installed\n"
|
|
42
43
|
|
|
44
|
+
cli_version += f"""
|
|
45
|
+
Python: {sys.version}"""
|
|
46
|
+
|
|
43
47
|
__all__ = [
|
|
44
48
|
"__version__",
|
|
45
49
|
"version",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ics-query
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.7
|
|
4
4
|
Summary: Find out what happens in ICS calendar files - query and filter RFC 5545 compatible .ics files for events, journals, TODOs and more.
|
|
5
5
|
Project-URL: Homepage, https://github.com/niccokunzmann/ics-query/
|
|
6
6
|
Project-URL: Repository, https://github.com/niccokunzmann/ics-query/
|
|
7
|
-
Project-URL: source_archive, https://github.com/niccokunzmann/ics-query/archive/
|
|
7
|
+
Project-URL: source_archive, https://github.com/niccokunzmann/ics-query/archive/1432c164178db5b0fd8bcc7927fce86af0f684d2.zip
|
|
8
8
|
Project-URL: Issues, https://github.com/niccokunzmann/ics-query/issues
|
|
9
9
|
Project-URL: Documentation, https://github.com/niccokunzmann/ics-query/
|
|
10
10
|
Project-URL: Changelog, https://github.com/niccokunzmann/ics-query/#changelog
|
|
@@ -1078,7 +1078,12 @@ tox -e ruff
|
|
|
1078
1078
|
|
|
1079
1079
|
### New Release
|
|
1080
1080
|
|
|
1081
|
-
|
|
1081
|
+
Renovate updates the dependencies automatically on the `main` branch.
|
|
1082
|
+
New commits on `main` are automatically published with an increased
|
|
1083
|
+
PATCH version number.
|
|
1084
|
+
|
|
1085
|
+
To release a new version with a new MINOR or MAJOR version number change,
|
|
1086
|
+
follow these steps:
|
|
1082
1087
|
|
|
1083
1088
|
1. edit the Changelog Section
|
|
1084
1089
|
2. create a commit and push it
|
|
@@ -1086,8 +1091,8 @@ To release new versions,
|
|
|
1086
1091
|
4. create a tag and push it
|
|
1087
1092
|
|
|
1088
1093
|
```shell
|
|
1089
|
-
git tag v0.1.
|
|
1090
|
-
git push origin v0.1.
|
|
1094
|
+
git tag v0.1.0
|
|
1095
|
+
git push origin v0.1.0
|
|
1091
1096
|
```
|
|
1092
1097
|
|
|
1093
1098
|
5. Notify the issues about their release
|
|
@@ -1098,6 +1103,11 @@ We automatically release the versions that only update dependencies.
|
|
|
1098
1103
|
If the version you installed does not show up here, only the dependencies
|
|
1099
1104
|
have been updated.
|
|
1100
1105
|
|
|
1106
|
+
- v0.4.1
|
|
1107
|
+
|
|
1108
|
+
- Automatic release with patch level version number increased
|
|
1109
|
+
- Increase patch version instead of minor version for automatic releases
|
|
1110
|
+
|
|
1101
1111
|
- v0.3.4
|
|
1102
1112
|
|
|
1103
1113
|
- Update dependencies
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
ics_query/__init__.py,sha256=BBd-FYDFf3jY_ApkMRkivqGti2uMeP4OT6KtgZDixic,917
|
|
2
2
|
ics_query/__main__.py,sha256=1rFDbZZcd6llmQ-X_611jWdrua4HMOnpOclKRvf03Us,737
|
|
3
|
-
ics_query/_version.py,sha256=
|
|
3
|
+
ics_query/_version.py,sha256=aiv6B46XdwSU0l915ePx2JQG3yol6FO4m6wTlI4ZKN0,411
|
|
4
4
|
ics_query/cli.py,sha256=VPXcSCjtaWZJtSzMsHqLfcTgStnJsoyY9K8Q0VZUs3o,19993
|
|
5
5
|
ics_query/parse.py,sha256=AO2TBoe98exzfzTKsoF5ZAvJOg3hN2qRpP15DAQKZaM,2415
|
|
6
6
|
ics_query/query.py,sha256=9HSSWJ1y7avU6mRDXBQKKTkk9oeG9qEwhr3k0piHbaU,2692
|
|
7
|
-
ics_query/version.py,sha256=
|
|
7
|
+
ics_query/version.py,sha256=ByXlZC-vAOZfkpZfh05KiLVnOH8IcSrQzylVZmjcnpA,1518
|
|
8
8
|
ics_query/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
ics_query/tests/conftest.py,sha256=MmxzXtpXHN3pf8jDmVGXvxcNXfepRwrJ03EF68zRSrY,3668
|
|
10
10
|
ics_query/tests/test_command_line.py,sha256=mB_v-WqjpYRcxtROdi7GfvUGTEHYZ-3Z-sWevp7lFYc,2524
|
|
@@ -37,8 +37,8 @@ ics_query/tests/runs/calendars/recurring-work-events.ics,sha256=4ASS_-xZl2pVv1kZ
|
|
|
37
37
|
ics_query/tests/runs/calendars/simple-journal.ics,sha256=U6_YMQM6EHwPDaszWgJDo-pR4WIqbJx8CRlHg4iu9zA,457
|
|
38
38
|
ics_query/tests/runs/calendars/simple-todo.ics,sha256=l9uHQD4eyiCE8STvd2tj5lAVaBrqUtpF_M8Pv6yf1es,327
|
|
39
39
|
ics_query/tests/runs/calendars/three-events.ics,sha256=YvPfthOzMCR0DQhGR6uj_1Bltgax3uA1ETlkI4JUI08,828
|
|
40
|
-
ics_query-0.
|
|
41
|
-
ics_query-0.
|
|
42
|
-
ics_query-0.
|
|
43
|
-
ics_query-0.
|
|
44
|
-
ics_query-0.
|
|
40
|
+
ics_query-0.4.7.dist-info/METADATA,sha256=nfjzRnpHzgNPmmx_2HWLqsnJ2TaVgRN_W54L-7RNrfc,54772
|
|
41
|
+
ics_query-0.4.7.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
42
|
+
ics_query-0.4.7.dist-info/entry_points.txt,sha256=Jq_39vCKVOkNZjL7Wngf_04V_n_QRszLgLT2CbJKiH4,49
|
|
43
|
+
ics_query-0.4.7.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
44
|
+
ics_query-0.4.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|