Skip to content

Commit

Permalink
Merge branch 'main' into workloadsTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
NSSPKrishna authored Sep 26, 2022
2 parents 69e890e + 8458712 commit e52d167
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
<a name="v0.91.2"></a>
## [v0.91.2] - 2022-09-22
### Bug Fixes
- omit filter ID when empty

<a name="v0.91.1"></a>
## [v0.91.1] - 2022-09-07
### Bug Fixes
Expand Down Expand Up @@ -1423,7 +1428,8 @@
- extract paging implementation
- rename packages for clarity, promote Config to the public package

[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.91.1...HEAD
[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.91.2...HEAD
[v0.91.2]: https://github.com/newrelic/newrelic-client-go/compare/v0.91.1...v0.91.2
[v0.91.1]: https://github.com/newrelic/newrelic-client-go/compare/v0.91.0...v0.91.1
[v0.91.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.90.0...v0.91.0
[v0.90.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.89.1...v0.90.0
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// Version of this library
const Version string = "0.91.1"
const Version string = "0.91.2"
2 changes: 1 addition & 1 deletion pkg/workflows/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ type AiWorkflowsUpdatedFilterInput struct {
// filterInput
FilterInput AiWorkflowsFilterInput `json:"filterInput,omitempty"`
// id
ID string `json:"id"`
ID string `json:"id,omitempty"`
}

// AiWorkflowsWorkflow - Workflow object
Expand Down

0 comments on commit e52d167

Please sign in to comment.