Skip to content

Commit

Permalink
bump after release v0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
yanndegat committed Oct 22, 2024
1 parent 374ae59 commit f6d6146
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "rules_tf",
version = "0.0.8",
version = "0.0.9",
repo_name = "rules_tf",
compatibility_level = 1,
)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Because now you can either use "tofu" or "terraform" binary.
To import rules_tf in your project, you first need to add it to your `MODULE.bazel` file:

```python
bazel_dep(name = "rules_tf", version = "0.0.7")
bazel_dep(name = "rules_tf", version = "0.0.8")
# git_override(
# module_name = "rules_tf",
# remote = "https://github.com/yanndegat/rules_tf",
Expand All @@ -22,9 +22,9 @@ bazel_dep(name = "rules_tf", version = "0.0.7")

tf = use_extension("@rules_tf//tf:extensions.bzl", "tf_repositories", dev_dependency = True)
tf.download(
version = "1.5.7",
tflint_version = "0.51.1",
tfdoc_version = "0.18.0",
version = "1.9.5",
tflint_version = "0.53.0",
tfdoc_version = "0.19.0",
use_tofu = False,
versions = {
"random" : "hashicorp/random:3.3.2",
Expand Down
4 changes: 2 additions & 2 deletions version.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# limitations under the License.
"""The version of rules_tf."""

next_version = "0.0.8"
previous_version = "0.0.7"
next_version = "0.0.9"
previous_version = "0.0.8"

0 comments on commit f6d6146

Please sign in to comment.