Skip to content

Commit

Permalink
pydicts-0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio committed Apr 12, 2023
1 parent 4796c26 commit 45656d7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
11 changes: 6 additions & 5 deletions NEW_RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# New Release Procedure
1. Add changelog to README.md
1. Make a comit with the form pydicts-$NEWVERSION$
1. git push
1. Create a new tag increasing its version and a new release
1. git push
1. Change __version__ in __init__.py
2. Add changelog to README.md
3. Make a comit with the form pydicts-$NEWVERSION$
4. git push
5. Create a new release setting $NEWVERSION$
6. poetry publish --username --password

6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,11 @@ TypeError: unsupported operand type(s) for +: 'int' and 'NoneType'
poetry run pytest

## CHANGELOG

### 0.2.0 (2023-04-12)
- Added lod_print with tabulate module
- Improving documentation
- Refactorized modules to lod_xyv, lod_ymmv

### 0.1.0 (2023-04-10)
- First version addapting listdict_functions from reusingcode
7 changes: 2 additions & 5 deletions pydicts.epj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"header": {
"comment": "eric project file for project pydicts",
"copyright": "Copyright (C) 2023 , ",
"saved": "2023-04-12, 07:31:17"
"saved": "2023-04-12, 07:42:05"
},
"project": {
"AUTHOR": "",
Expand Down Expand Up @@ -80,12 +80,9 @@
"pydicts/lod.py",
"pydicts/lod_xyv.py",
"pydicts/lod_ymv.py",
"pydicts/row_column_value.py",
"pydicts/tests/__init__.py",
"pydicts/tests/test_lod.py",
"pydicts/tests/test_lod_ymv.py",
"pydicts/tests/test_year_month_value.py",
"pydicts/year_month_value.py"
"pydicts/tests/test_lod_ymv.py"
],
"SPELLEXCLUDES": "",
"SPELLLANGUAGE": "en_US",
Expand Down
4 changes: 2 additions & 2 deletions pydicts/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from datetime import datetime
__version__="0.1.0"
__versiondatetime__= datetime(2023, 4, 10, 7, 53)
__version__="0.2.0"
__versiondatetime__= datetime(2023, 4, 12, 7, 41)
__versiondate__=__versiondatetime__.date()

0 comments on commit 45656d7

Please sign in to comment.