-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Version changelog ## 0.1.1 * Improved usage instructions and added more documentation for services.
- Loading branch information
Showing
3 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Version changelog | ||
|
||
## 0.1.0 (unreleased) | ||
## 0.1.1 | ||
|
||
* Improved usage instructions and added more documentation for services. | ||
|
||
## 0.1.0 | ||
|
||
* Initial release of the Databricks SDK for Go. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ The Databricks SDK for Go includes functionality to accelerate development with | |
2. Take a dependency on the Databricks SDK for Go package by running the `go mod edit -require` command: | ||
|
||
```bash | ||
go mod edit -require github.com/databricks/[email protected].0 | ||
go mod edit -require github.com/databricks/[email protected].1 | ||
``` | ||
|
||
Your `go.mod` file should now look like this: | ||
|
@@ -38,7 +38,7 @@ The Databricks SDK for Go includes functionality to accelerate development with | |
go 1.18 | ||
require github.com/databricks/databricks-sdk-go v0.1.0 | ||
require github.com/databricks/databricks-sdk-go v0.1.1 | ||
// Indirect dependencies will go here. | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package version | ||
|
||
// Version of the SDK, updated manually before every tag | ||
const Version = "0.1.0" | ||
const Version = "0.1.1" |