-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
16 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |