Skip to content

Commit faac8ae

Browse files
committed
Import changes from gitlab/dda/python-terraform
1 parent 8a3451c commit faac8ae

File tree

9 files changed

+337
-157
lines changed

9 files changed

+337
-157
lines changed

.gitignore

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,35 @@
1+
# terraform
12
*.tfstate
23
*.tfstate.backup
4+
5+
# python
36
*.pyc
47
*.egg-info
5-
.idea
68
.cache
9+
__pycache__
710
/.pypirc
8-
/.tox/
9-
.dropbox
10-
env/
11-
Icon
11+
dist/
12+
build/
1213
/pytestdebug.log
13-
.DS_Store
14+
.pytestdebug.log
1415

1516
# virtualenv
1617
.virtualenv/
1718
venv/
1819

1920

2021
# Intellij
22+
.idea
2123
.idea/
2224

2325
# VSCode
2426
.vscode/
2527
pyrightconfig.json
28+
tmp.txt
29+
30+
# other
31+
.dropbox
32+
.DS_Store
33+
/.tox/
34+
env/
35+
Icon

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@
1717
## [0.10.1]
1818
1. [#48] adding extension for temp file to adopt the change in terraform 0.12.0
1919
1. [#49] add workspace support
20+
21+
## [1.0.1]
22+
1. adding option to output the latest cmd
23+
1. added refresh command
24+
1. intenden to work with tf1.0

doc/releasing.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## Release
2+
3+
```
4+
adjust version no in setup.py to release version no.
5+
git commit -am "release"
6+
git tag -am "release" release-[release version no]
7+
git push --follow-tags
8+
increase version no in setup.py
9+
git commit -am "version bump"
10+
git push
11+
pip3 install --upgrade --user python-terraform
12+
```

0 commit comments

Comments
 (0)