Skip to content

Commit

Permalink
eml_rename-0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio committed Apr 17, 2023
1 parent b47cc24 commit da89d59
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
10 changes: 10 additions & 0 deletions NEW_RELEASE.md
Original file line number Diff line number Diff line change
@@ -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

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions eml_rename/__init__.py
Original file line number Diff line number Diff line change
@@ -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()

8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <turulomio@yahoo.es>"]
license = "GPL-3.0 license"
Expand All @@ -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"

0 comments on commit da89d59

Please sign in to comment.