diff --git a/pyproject.toml b/pyproject.toml index 6fbfc19..6cfef92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "tembo" description = "A simple folder organiser for your work notes." -version = "0.0.8" +version = "1.0.0" license = "ISC" authors = ["dtomlinson "] readme = "./README.md" diff --git a/requirements.txt b/requirements.txt index cdc06cb..50355a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ click==8.0.3; python_version >= "3.6" colorama==0.4.4; python_version >= "3.6" and python_full_version < "3.0.0" and platform_system == "Windows" or platform_system == "Windows" and python_version >= "3.6" and python_full_version >= "3.5.0" jinja2==3.0.3; python_version >= "3.6" markupsafe==2.0.1; python_version >= "3.6" -panaetius @ /home/dtomlinson/git-repos/python/panaetius; python_version >= "3.7" and python_version < "4.0" +panaetius==2.3.3; python_version >= "3.7" and python_version < "4.0" pendulum==2.1.2; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0") python-dateutil==2.8.2; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" pytzdata==2020.1; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" diff --git a/requirements_dev.txt b/requirements_dev.txt index c7eec7c..ab90958 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -44,7 +44,7 @@ mkdocstrings==0.16.2; python_version >= "3.6" mypy-extensions==0.4.3; python_full_version >= "3.6.1" and python_version < "4.0" and python_version >= "3.5" mypy==0.910; python_version >= "3.5" packaging==21.3; python_version >= "3.6" -panaetius @ /home/dtomlinson/git-repos/python/panaetius; python_version >= "3.7" and python_version < "4.0" +panaetius==2.3.3; python_version >= "3.7" and python_version < "4.0" pbr==5.8.0; python_full_version >= "3.6.1" and python_version < "4.0" and python_version >= "3.6" pefile==2021.9.3; sys_platform == "win32" and python_version >= "3.6" and python_full_version >= "3.6.0" pendulum==2.1.2; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0") diff --git a/setup.py b/setup.py index 35ca0e1..43594ea 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ package_data = \ install_requires = \ ['Jinja2>=3.0.2,<4.0.0', 'click>=8.0.3,<9.0.0', - 'panaetius>=2.3.2,<3.0.0', + 'panaetius>=2.3.3,<3.0.0', 'pendulum>=2.1.2,<3.0.0'] entry_points = \ @@ -18,7 +18,7 @@ entry_points = \ setup_kwargs = { 'name': 'tembo', - 'version': '0.0.8', + 'version': '1.0.0', 'description': 'A simple folder organiser for your work notes.', 'long_description': '# Tembo\n\n\n\nA simple folder organiser for your work notes.\n\n![](https://img.shields.io/codecov/c/github/tembo-pages/tembo-core?style=flat-square)\n\n![Sonar Coverage](https://img.shields.io/sonar/coverage/tembo-pages_tembo-core?server=https%3A%2F%2Fsonarcloud.io&style=flat-square)\n![Sonar Tests](https://img.shields.io/sonar/tests/tembo-pages_tembo-core?compact_message&failed_label=failed&passed_label=passed&server=https%3A%2F%2Fsonarcloud.io&skipped_label=skipped&style=flat-square)\n![Sonar Tech Debt](https://img.shields.io/sonar/tech_debt/tembo-pages_tembo-core?server=https%3A%2F%2Fsonarcloud.io&style=flat-square)\n\n## config.yml\n\n```yaml\n# time tokens: https://strftime.org\ntembo:\n base_path: ~/tembo\n # template_path: ~/tembo/templates\n scopes:\n - name: scratchpad\n example: tembo new scratchpad\n path: "scratchpad/{d:%B_%Y}"\n filename: "{d:%B_%W}"\n extension: md\n template_filename: scratchpad.md.tpl\n - name: wtodo\n example: tembo new wtodo | directory is month_year, filename is month_week-of-year\n path: "wtodo/{d:%B_%Y}"\n filename: "week_{d:%W}"\n extension: todo\n template_filename: weekly.todo.tpl\n - name: meeting\n example: tembo new meeting $meeting_title\n path: "meetings/{d:%B_%y}"\n filename: "{d:%a_%d_%m_%y}-{input0}"\n extension: md\n template_filename: meeting.md.tpl\n - name: knowledge\n example: tembo new knowledge $project $filename\n path: "knowledge/{input0}"\n filename: "{input1}"\n extension: md\n template_filename: knowledge.md.tpl\n logging:\n level: INFO\n path: ~/tembo/.logs\n```\n\n## templates\n\n###\xa0knowledge\n\n```\n---\ncreated: {d:%d-%m-%Y}\n---\n\n# {input0} - {input1}.md\n```\n\n### meeting\n\n```\n---\ncreated: {d:%d-%m-%Y}\n---\n\n# {d:%A %d %B %Y} - {input0}\n\n## People\n\nHead:\n\nAttendees:\n\n## Actions\n\n\n## Notes\n\n```\n\n### scratchpad\n\n```\n---\ncreated: {d:%d-%m-%Y}\n---\n\n# Scratchpad - Week {d:%W} - {d:%B-%y}\n```\n\n### wtodo\n\n```\n---\ncreated: {d:%d-%m-%Y}\n---\n\nWeekly TODO | Week {d:%W} {d:%B}-{d:%Y}\n\nWork:\n\nDocumentation:\n```\n', 'author': 'dtomlinson', diff --git a/tembo/_version.py b/tembo/_version.py index 7c2d128..5f9e259 100644 --- a/tembo/_version.py +++ b/tembo/_version.py @@ -1,3 +1,3 @@ """Module containing the version of tembo.""" -__version__ = "0.0.8" +__version__ = "1.0.0"