Skip to content

Commit

Permalink
Add 0.1.0 changelog (#29)
Browse files Browse the repository at this point in the history
Add 0.1.0 changelog
  • Loading branch information
shiyuhang0 authored Nov 15, 2022
1 parent 0b7b748 commit b5b8cb6
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## [0.1.0] 2022-11-15

**Compatibility Changes**
- backup datasource is renamed to backups datasource.
- project datasource is renamed to projects datasource.
- restore datasource is renamed to restores datasource.
- cluster_spec datasource is renamed to cluster_specs datasource.

**Features**
- Support clusters datasource.

**Changes**
- Supplement the status information in cluster resource.

## [0.0.4] 2022-10-29

Docs:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ terraform {
required_providers {
tidbcloud = {
source = "tidbcloud/tidbcloud"
version = "~> 0.0.1"
version = "~> 0.1.0"
}
}
required_version = ">= 1.0.0"
Expand All @@ -121,7 +121,7 @@ Initializing the backend...
Initializing provider plugins...
- Reusing previous version of tidbcloud/tidbcloud from the dependency lock file
- Using previously-installed tidbcloud/tidbcloud v0.0.1
- Using previously-installed tidbcloud/tidbcloud v0.1.0
Terraform has been successfully initialized!
Expand All @@ -143,7 +143,7 @@ terraform {
required_providers {
tidbcloud = {
source = "tidbcloud/tidbcloud"
version = "~> 0.0.1"
version = "~> 0.1.0"
}
}
required_version = ">= 1.0.0"
Expand Down Expand Up @@ -177,7 +177,7 @@ terraform {
required_providers {
tidbcloud = {
source = "tidbcloud/tidbcloud"
version = "~> 0.0.1"
version = "~> 0.1.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ terraform {
required_providers {
tidbcloud = {
source = "tidbcloud/tidbcloud"
version = "~> 0.0.1"
version = "~> 0.1.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
tidbcloud = {
source = "tidbcloud/tidbcloud"
version = "~> 0.0.1"
version = "~> 0.1.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
var (
// these will be set by the goreleaser configuration
// to appropriate values for the compiled binary
version string = "0.0.1"
version string = "0.1.0"

// goreleaser can also pass the specific commit if you want
// commit string = ""
Expand Down

0 comments on commit b5b8cb6

Please sign in to comment.