Skip to content

Commit bf9e567

Browse files
authored
Merge pull request #9 from haodeon/feat/0.8.0
Update terraform to 1.8.4
2 parents 80b4d56 + a9512e5 commit bf9e567

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
steps:
1313
- name: Check out repository code
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515
- name: Set up GoLang
16-
uses: actions/setup-go@v4
16+
uses: actions/setup-go@v5
1717
with:
1818
go-version: '^1.21.5'
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install poetry pytest

README.md

+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.8.0](https://pypi.org/project/libterraform/0.8.0/) | [1.8.4](https://github.com/hashicorp/terraform/tree/v1.8.4) |
9293
| [0.7.0](https://pypi.org/project/libterraform/0.7.0/) | [1.6.6](https://github.com/hashicorp/terraform/tree/v1.6.6) |
9394
| [0.6.0](https://pypi.org/project/libterraform/0.6.0/) | [1.5.7](https://github.com/hashicorp/terraform/tree/v1.5.7) |
9495
| [0.5.0](https://pypi.org/project/libterraform/0.5.0/) | [1.3.0](https://github.com/hashicorp/terraform/tree/v1.3.0) |

libterraform.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"github.com/hashicorp/terraform/internal/logging"
2424
"github.com/hashicorp/terraform/internal/terminal"
2525
"github.com/hashicorp/terraform/version"
26-
"github.com/mitchellh/cli"
26+
"github.com/hashicorp/cli"
2727
"github.com/mitchellh/colorstring"
2828
"go.opentelemetry.io/otel/trace"
2929
"log"

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.7.0'
5+
__version__ = '0.8.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.7.0"
3+
version = "0.8.0"
44
description = "Python binding for Terraform."
55
authors = ["Prodesire <[email protected]>"]
66
license = "MIT"

terraform

Submodule terraform updated 1073 files

0 commit comments

Comments
 (0)