Skip to content

Commit

Permalink
release: v0.3.5 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
ewanharris authored Feb 13, 2024
1 parent f7429ac commit 0059bef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.3.5

### [0.3.5](https://github.com/openfga/go-sdk/compare/v0.3.4...v0.3.5) (2024-02-13)

- fix: don't escape HTML characters in conditions when marshalling a model

## v0.3.4

### [0.3.4](https://github.com/openfga/go-sdk/compare/v0.3.3...v0.3.4) (2024-01-22)
Expand Down
4 changes: 2 additions & 2 deletions configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (
)

const (
SdkVersion = "0.3.4"
SdkVersion = "0.3.5"

defaultUserAgent = "openfga-sdk go/0.3.4"
defaultUserAgent = "openfga-sdk go/0.3.5"
)

// RetryParams configures configuration for retry in case of HTTP too many request
Expand Down
4 changes: 2 additions & 2 deletions example/example1/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ module example1

go 1.20

require github.com/openfga/go-sdk v0.3.4
require github.com/openfga/go-sdk v0.3.5

require golang.org/x/sync v0.6.0 // indirect

// To reference local build, uncomment below and run `go mod tidy`
//replace github.com/openfga/go-sdk v0.3.4 => ../../
//replace github.com/openfga/go-sdk v0.3.5 => ../../

0 comments on commit 0059bef

Please sign in to comment.