Skip to content

Commit

Permalink
Release v0.1.1 (#227)
Browse files Browse the repository at this point in the history
# Version changelog

## 0.1.1

* Improved usage instructions and added more documentation for services.
  • Loading branch information
nfx authored Dec 2, 2022
1 parent 4b432e2 commit 68ec262
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
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.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.
```
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
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"

0 comments on commit 68ec262

Please sign in to comment.