12 lines
293 B
Markdown
12 lines
293 B
Markdown
|
## Release
|
||
|
|
||
|
```
|
||
|
adjust version no in setup.py to release version no.
|
||
|
git commit -am "release"
|
||
|
git tag -am "release" release-[release version no]
|
||
|
git push --follow-tags
|
||
|
increase version no in setup.py
|
||
|
git commit -am "version bump"
|
||
|
git push
|
||
|
pip3 install --upgrade --user dda-python-terraform
|
||
|
```
|