Skip to content

Commit

Permalink
chore: Remove the beta flag from the Autocomplete Endpoint to reflect…
Browse files Browse the repository at this point in the history
… changes in the API functionality. (#31)
  • Loading branch information
vvillait88 committed Mar 18, 2024
1 parent f7dcf0c commit 6d9b844
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [1.4.3] - 2024-03-04

- Update Dependencies

## [1.4.4] - 2024-03-04

- Remove beta from AutoComplete Endpoint
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<img src="https://img.shields.io/badge/repo%20status-Active-limegreen" alt="Repo Status">
</a>&nbsp;
<a href="https://pkg.go.dev/github.com/peopledatalabs/peopledatalabs-go">
<img src="https://img.shields.io/github/go-mod/go-version/peopledatalabs/peopledatalabs-go" alt="Go 1.4.3" />
<img src="https://img.shields.io/github/go-mod/go-version/peopledatalabs/peopledatalabs-go" alt="Go 1.4.4" />
</a>&nbsp;
<a href="https://github.com/peopledatalabs/peopledatalabs-go/actions/workflows/test.yaml">
<img src="https://github.com/peopledatalabs/peopledatalabs-go/actions/workflows/test.yaml/badge.svg" alt="Tests Status" />
Expand Down
1 change: 0 additions & 1 deletion model/autocomplete.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
type AutocompleteBaseParams struct {
Field AutocompleteType `json:"field" url:"field"` // Field that autocomplete will be calculated for
Text string `json:"text,omitempty" url:"text,omitempty"` // Text that is used as the seed for autocompletion
Beta bool `json:"beta,omitempty" url:"beta,omitempty"` // Whether to use the beta version of the autocomplete API
}

type AutocompleteParams struct {
Expand Down
2 changes: 1 addition & 1 deletion pld.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/peopledatalabs/peopledatalabs-go/api"
)

const Version = "1.4.3"
const Version = "1.4.4"

type pld struct {
Person api.Person
Expand Down

0 comments on commit 6d9b844

Please sign in to comment.