mkdocs-document-dates 1.0.0__tar.gz → 1.2.0__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.
Files changed (26) hide show
  1. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/PKG-INFO +7 -2
  2. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/README.md +6 -1
  3. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates.egg-info/PKG-INFO +7 -2
  4. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/setup.py +1 -1
  5. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/LICENSE +0 -0
  6. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/__init__.py +0 -0
  7. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/hooks/pre-commit +0 -0
  8. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/__init__.py +0 -0
  9. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/ar.py +0 -0
  10. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/de.py +0 -0
  11. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/en.py +0 -0
  12. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/es.py +0 -0
  13. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/fr.py +0 -0
  14. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/ja.py +0 -0
  15. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/ko.py +0 -0
  16. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/ru.py +0 -0
  17. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/zh.py +0 -0
  18. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/lang/zh_tw.py +0 -0
  19. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/plugin.py +0 -0
  20. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates/styles.py +0 -0
  21. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates.egg-info/SOURCES.txt +0 -0
  22. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates.egg-info/dependency_links.txt +0 -0
  23. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates.egg-info/entry_points.txt +0 -0
  24. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates.egg-info/requires.txt +0 -0
  25. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/mkdocs_document_dates.egg-info/top_level.txt +0 -0
  26. {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.2.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mkdocs-document-dates
3
- Version: 1.0.0
3
+ Version: 1.2.0
4
4
  Summary: A MkDocs plugin for displaying accurate document creation and last modification dates.
5
5
  Home-page: https://github.com/jaywhj/mkdocs-document-dates
6
6
  Author: Aaron Wang
@@ -111,4 +111,9 @@ modified: 2023-12-31
111
111
  - macOS: Uses file creation time (birthtime)
112
112
  - Linux: Uses modification time as creation time due to system limitations, if you need the exact creation time, you can manually specify it in Front Matter
113
113
  - It still works when using CI/CD build systems (e.g. Github Actions)
114
- - Used a cache file `.dates_cache.json` to solve this problem
114
+ - Used a cache file `dates_cache.json` to solve this problem
115
+ - You can configure it like this: `pip install --upgrade mkdocs-document-dates` or `pip install mkdocs-document-dates==1.2.0`
116
+ ```
117
+ - run: pip install --upgrade mkdocs-document-dates
118
+ - run: mkdocs gh-deploy --force
119
+ ```
@@ -89,4 +89,9 @@ modified: 2023-12-31
89
89
  - macOS: Uses file creation time (birthtime)
90
90
  - Linux: Uses modification time as creation time due to system limitations, if you need the exact creation time, you can manually specify it in Front Matter
91
91
  - It still works when using CI/CD build systems (e.g. Github Actions)
92
- - Used a cache file `.dates_cache.json` to solve this problem
92
+ - Used a cache file `dates_cache.json` to solve this problem
93
+ - You can configure it like this: `pip install --upgrade mkdocs-document-dates` or `pip install mkdocs-document-dates==1.2.0`
94
+ ```
95
+ - run: pip install --upgrade mkdocs-document-dates
96
+ - run: mkdocs gh-deploy --force
97
+ ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mkdocs-document-dates
3
- Version: 1.0.0
3
+ Version: 1.2.0
4
4
  Summary: A MkDocs plugin for displaying accurate document creation and last modification dates.
5
5
  Home-page: https://github.com/jaywhj/mkdocs-document-dates
6
6
  Author: Aaron Wang
@@ -111,4 +111,9 @@ modified: 2023-12-31
111
111
  - macOS: Uses file creation time (birthtime)
112
112
  - Linux: Uses modification time as creation time due to system limitations, if you need the exact creation time, you can manually specify it in Front Matter
113
113
  - It still works when using CI/CD build systems (e.g. Github Actions)
114
- - Used a cache file `.dates_cache.json` to solve this problem
114
+ - Used a cache file `dates_cache.json` to solve this problem
115
+ - You can configure it like this: `pip install --upgrade mkdocs-document-dates` or `pip install mkdocs-document-dates==1.2.0`
116
+ ```
117
+ - run: pip install --upgrade mkdocs-document-dates
118
+ - run: mkdocs gh-deploy --force
119
+ ```
@@ -34,7 +34,7 @@ try:
34
34
  except FileNotFoundError:
35
35
  long_description = "A MkDocs plugin for displaying accurate document creation and last modification dates."
36
36
 
37
- VERSION = '1.0.0'
37
+ VERSION = '1.2.0'
38
38
 
39
39
  setup(
40
40
  name="mkdocs-document-dates",