Skip to content

Commit 78d62de

Browse files
committed
Bump version to 0.2.9
1 parent 320ce5c commit 78d62de

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515
* `error_messages` from `databricks_mws_networks` are deprecated and would be removed in 0.3.
1616
* `ebs_volume_type` and `azure_disk_volume_type` from `databricks_instance_pool` is going to be moved to `disk_type` sub-block in 0.3, which means you'll slightly have to modify configuration while migrating to 0.3. Computed field `default_tags` is going to be removed from resource. This is done to further increase maintainability of provider in the future.
1717

18+
Updated dependency versions:
19+
20+
* github.com/aws/aws-sdk-go 35.36
21+
* github.com/hashicorp/go-retryablehttp 0.6.8
22+
* github.com/Azure/go-autorest/autorest 0.11.12
23+
1824
**Behavior changes**
1925
* `min_idle_instances` for `databricks_instance_pool` is now optional.
2026
* `skip_validation` for `databricks_instance_profile` is going to be removed in 0.3.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ coverage: test
1818
@echo "✓ Opening coverage for unit tests..."
1919
@go tool cover -html=coverage.txt
2020

21-
VERSION = $(shell git describe --long --always | sed 's/v//')
21+
VERSION = 0.2.9
2222

2323
build:
2424
@echo "✓ Building source code with go build..."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ terraform {
5454
required_providers {
5555
databricks = {
5656
source = "databrickslabs/databricks"
57-
version = ">= 0.2.7"
57+
version = "0.2.9"
5858
}
5959
}
6060
}

common/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
)
66

77
var (
8-
version = "0.2.8"
8+
version = "0.2.9"
99
)
1010

1111
// Version returns version of provider

0 commit comments

Comments
 (0)