Skip to content

Commit dbe387b

Browse files
committed
Release process tooling
1 parent 985e797 commit dbe387b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ echo
66
VERSION=`cat netmiko/__init__.py | grep version | sed "s/^__version__ = \"//"`
77
VERSION=`echo $VERSION | sed "s/\"$//"`
88
PACKAGE=`echo 'netmiko-'$VERSION'.tar.gz'`
9-
WHL_PACKAGE=`echo 'netmiko-'$VERSION'-py2.py3-none-any.whl'`
9+
WHL_PACKAGE=`echo 'netmiko-'$VERSION'-py3-none-any.whl'`
1010
GLOB_PACKAGE=`echo 'netmiko-'$VERSION'*'`
1111
DIR_PACKAGE=`echo './dist/'$PACKAGE`
1212
DIR_WHL_PACKAGE=`echo './dist/'$WHL_PACKAGE`

release_process.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ $ pdoc3 --html --output-dir docs netmiko --force
2020
# Run ./_release.sh
2121

2222
# Create a tag for the version
23-
$ git tag -a v3.3.2 -m "Version 3.3.2 Release"
24-
$ git push origin <tag_name>
23+
git tag -a v3.3.3 -m "Version 3.3.3 Release"
24+
git push origin v3.3.3
2525

0 commit comments

Comments
 (0)