Skip to content

Commit 4b9eae5

Browse files
authored
Merge pull request #6 from haodeon/feat/0.6.0
Update terraform to 1.5.7
2 parents 8a21792 + c9d4ce8 commit 4b9eae5

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
os: [ ubuntu-20.04, windows-latest, macos-latest ]
9+
os: [ ubuntu-20.04, windows-2019, macos-latest ]
1010
python-version: [ '3.7.9', '3.8.10', '3.9.13', '3.10.11', '3.11.5' ]
1111
runs-on: ${{ matrix.os }}
1212
steps:

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ dict_keys(['time_sleep.wait1', 'time_sleep.wait2'])
8989

9090
| libterraform | Terraform |
9191
|-------------------------------------------------------|-------------------------------------------------------------|
92+
| [0.6.0](https://pypi.org/project/libterraform/0.6.0/) | [1.5.7](https://github.com/hashicorp/terraform/tree/v1.5.7) |
9293
| [0.5.0](https://pypi.org/project/libterraform/0.5.0/) | [1.3.0](https://github.com/hashicorp/terraform/tree/v1.3.0) |
9394
| [0.4.0](https://pypi.org/project/libterraform/0.4.0/) | [1.2.2](https://github.com/hashicorp/terraform/tree/v1.2.2) |
9495
| [0.3.1](https://pypi.org/project/libterraform/0.3.1/) | [1.1.7](https://github.com/hashicorp/terraform/tree/v1.1.7) |
@@ -98,7 +99,7 @@ dict_keys(['time_sleep.wait1', 'time_sleep.wait2'])
9899
If you want to develop this library, should first prepare the following environments:
99100

100101
- [GoLang](https://go.dev/dl/) (Version 1.18+)
101-
- [Python](https://www.python.org/downloads/) (Version 3.7~3.10)
102+
- [Python](https://www.python.org/downloads/) (Version 3.7~3.11)
102103
- GCC
103104

104105
Then, initialize git submodule:

libterraform/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from ctypes import cdll, c_void_p
33
from libterraform.common import WINDOWS
44

5-
__version__ = '0.5.0'
5+
__version__ = '0.6.0'
66

77
root = os.path.dirname(os.path.abspath(__file__))
88
_lib_filename = 'libterraform.dll' if WINDOWS else 'libterraform.so'

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "libterraform"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "Python binding for Terraform."
55
authors = ["Prodesire <[email protected]>"]
66
license = "MIT"

terraform

Submodule terraform updated 2180 files

0 commit comments

Comments
 (0)