Skip to content

Commit

Permalink
version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWillner committed Dec 29, 2020
1 parent 0ad86bd commit ea504d7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-include appstore/Makefile

VERSION=1.0.0.dev0
VERSION=1.0.1
SRC_CORE=src
SRC_TEST=tests
PYTHON=python3
Expand Down Expand Up @@ -82,3 +82,8 @@ feedback:

commit: test auto-style lint
@git status

version:
@read -p "Press CTRL+C to NOT making release $(VERSION)..."
@sed -i '' 's/VERSION = ".*"/VERSION = "'$(VERSION)'"/g' appstore/setup.py
@find src/ -type f -iname "*.py" -execdir sed -i '' 's/__version__ = ".*"/__version__ = "'$(VERSION)'"/g' {} \;
2 changes: 1 addition & 1 deletion src/mailbox_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
__credits__ = ["github.com/guido4000",
"github.com/halteproblem", "github.com/jamesridgway"]
__license__ = "MIT"
__version__ = "1.0.0"
__version__ = "1.0.1"
__maintainer__ = "Alexander Willner"
__email__ = "alex@willner.ws"
__status__ = "Development"
Expand Down
2 changes: 1 addition & 1 deletion src/mailbox_imap.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
__credits__ = ["github.com/guido4000",
"github.com/halteproblem", "github.com/jamesridgway"]
__license__ = "MIT"
__version__ = "1.0.0"
__version__ = "1.0.1"
__maintainer__ = "Alexander Willner"
__email__ = "alex@willner.ws"
__status__ = "Development"
Expand Down
2 changes: 1 addition & 1 deletion src/mailbox_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
__credits__ = ["github.com/guido4000",
"github.com/halteproblem", "github.com/jamesridgway"]
__license__ = "MIT"
__version__ = "1.0.0"
__version__ = "1.0.1"
__maintainer__ = "Alexander Willner"
__email__ = "alex@willner.ws"
__status__ = "Development"
Expand Down

0 comments on commit ea504d7

Please sign in to comment.