From da89d59136f4dadad6c29b8184f0dcaa7b5bdfba Mon Sep 17 00:00:00 2001 From: turulomio Date: Mon, 17 Apr 2023 10:02:12 +0200 Subject: [PATCH] eml_rename-0.3.0 --- NEW_RELEASE.md | 10 ++++++++++ README.md | 4 ++++ eml_rename/__init__.py | 4 ++-- pyproject.toml | 8 +++++++- 4 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 NEW_RELEASE.md diff --git a/NEW_RELEASE.md b/NEW_RELEASE.md new file mode 100644 index 0000000..bfc0e26 --- /dev/null +++ b/NEW_RELEASE.md @@ -0,0 +1,10 @@ +# New Release Procedure + 1. Change version in pyproject.toml + 2. Change __version__ in __init__.py + 3. Add changelog to README.md + 4. Make a comit with the form eml_rename-$NEWVERSION$ + 5. git push + 6. Create a new release setting $NEWVERSION$ + 7. poetry build + 8. poetry publish --username --password + diff --git a/README.md b/README.md index 7331146..d6aa2b9 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ I took this idea from an article of Armand Niculescu (August 20, 2014) at https: ## Changelog +### 0.3.0 (2023-04-17) +- setup.py migrated to poetry +- Fix bug with CEST time zones + ### 0.2.0 (2022-11-12) - Now mail datetime uses local system time zone diff --git a/eml_rename/__init__.py b/eml_rename/__init__.py index 292c8fd..0bc8fd4 100644 --- a/eml_rename/__init__.py +++ b/eml_rename/__init__.py @@ -1,5 +1,5 @@ from datetime import datetime -__version__ = '0.2.0' -__versiondatetime__=datetime(2022, 11, 12, 20, 9) +__version__ = '0.3.0' +__versiondatetime__=datetime(2023, 4, 17, 10, 0) __versiondate__=__versiondatetime__.date() diff --git a/pyproject.toml b/pyproject.toml index ee1f71e..0398709 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "eml-rename" -version = "0.2.0" +version = "0.3.0" description = "Script renames all eml files in a directory using mail metadata" authors = ["turulomio "] license = "GPL-3.0 license" @@ -22,3 +22,9 @@ build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] eml_rename = 'eml_rename.core:main' + + +[project.urls] +homepage = "https://github.com/turulomio/eml_rename/" +repository = "https://github.com/turulomio/eml_rename/" +changelog = "https://github.com/turulomio/eml_rename#changelog"