Skip to content

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Apr 9, 2024
1 parent ffdfbd9 commit ea157d9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 0.3.0 (Unreleased)
## 0.3.0

- Improve Logging.
- Add development script


## 0.2.0 (Unreleased)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<img src="https://github.com/Clivern/terraform-provider-lynx/actions/workflows/test.yml/badge.svg"/>
</a>
<a href="https://github.com/clivern/terraform-provider-lynx/releases">
<img src="https://img.shields.io/badge/Version-0.2.0-1abc9c.svg">
<img src="https://img.shields.io/badge/Version-0.3.0-1abc9c.svg">
</a>
<a href="https://registry.terraform.io/providers/Clivern/lynx/latest">
<img src="https://img.shields.io/badge/Provider-0.2.0-yellow.svg">
<img src="https://img.shields.io/badge/Provider-0.3.0-yellow.svg">
</a>
<a href="https://github.com/clivern/terraform-provider-lynx/blob/master/LICENSE">
<img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg">
Expand Down
19 changes: 19 additions & 0 deletions scripts/dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash

# Define the code to be written to the file
code="provider_installation {
dev_overrides {
\"registry.terraform.io/clivern/lynx\" = \"$(go env GOBIN)\"
}
# For all other providers, install them directly from their origin provider
# registries as normal. If you omit this, Terraform will _only_ use
# the dev_overrides block, and so no other providers will be available.
direct {}
}"

# Write the code to the ~/.terraformrc file
echo "$code" > ~/.terraformrc

go build main.go

0 comments on commit ea157d9

Please sign in to comment.