Skip to content

Commit ea157d9

Browse files
committed
release 0.3.0
1 parent ffdfbd9 commit ea157d9

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 0.3.0 (Unreleased)
1+
## 0.3.0
22

33
- Improve Logging.
4+
- Add development script
45

56

67
## 0.2.0 (Unreleased)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<img src="https://github.com/Clivern/terraform-provider-lynx/actions/workflows/test.yml/badge.svg"/>
77
</a>
88
<a href="https://github.com/clivern/terraform-provider-lynx/releases">
9-
<img src="https://img.shields.io/badge/Version-0.2.0-1abc9c.svg">
9+
<img src="https://img.shields.io/badge/Version-0.3.0-1abc9c.svg">
1010
</a>
1111
<a href="https://registry.terraform.io/providers/Clivern/lynx/latest">
12-
<img src="https://img.shields.io/badge/Provider-0.2.0-yellow.svg">
12+
<img src="https://img.shields.io/badge/Provider-0.3.0-yellow.svg">
1313
</a>
1414
<a href="https://github.com/clivern/terraform-provider-lynx/blob/master/LICENSE">
1515
<img src="https://img.shields.io/badge/LICENSE-MIT-orange.svg">

scripts/dev

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
# Define the code to be written to the file
4+
code="provider_installation {
5+
6+
dev_overrides {
7+
\"registry.terraform.io/clivern/lynx\" = \"$(go env GOBIN)\"
8+
}
9+
10+
# For all other providers, install them directly from their origin provider
11+
# registries as normal. If you omit this, Terraform will _only_ use
12+
# the dev_overrides block, and so no other providers will be available.
13+
direct {}
14+
}"
15+
16+
# Write the code to the ~/.terraformrc file
17+
echo "$code" > ~/.terraformrc
18+
19+
go build main.go

0 commit comments

Comments
 (0)