From 6d9b844f79361a954eb1b5ddbcf4193ef0b9e417 Mon Sep 17 00:00:00 2001 From: Varun Villait Date: Mon, 18 Mar 2024 09:29:27 -0700 Subject: [PATCH] chore: Remove the beta flag from the Autocomplete Endpoint to reflect changes in the API functionality. (#31) --- CHANGELOG.md | 4 ++++ README.md | 2 +- model/autocomplete.go | 1 - pld.go | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 744d819..522c941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 536652c..a0391ee 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Repo Status   - Go 1.4.3 + Go 1.4.4   Tests Status diff --git a/model/autocomplete.go b/model/autocomplete.go index 6a8bb2f..54aafba 100644 --- a/model/autocomplete.go +++ b/model/autocomplete.go @@ -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 { diff --git a/pld.go b/pld.go index 0b7db93..7b02790 100644 --- a/pld.go +++ b/pld.go @@ -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