Skip to content

Commit 9ed5eee

Browse files
chore: release 2022-06-23 [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent a5af3d8 commit 9ed5eee

File tree

21 files changed

+21
-21
lines changed

21 files changed

+21
-21
lines changed

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/AbtestingClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public AbtestingClient(String appId, String apiKey, String region) {
3333
}
3434

3535
public AbtestingClient(String appId, String apiKey, String region, ClientOptions options) {
36-
super(appId, apiKey, "Abtesting", "4.2.0-SNAPSHOT", options);
36+
super(appId, apiKey, "Abtesting", "4.2.1-SNAPSHOT", options);
3737
if (options != null && options.getHosts() != null) {
3838
this.setHosts(options.getHosts());
3939
} else {

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/AnalyticsClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public AnalyticsClient(String appId, String apiKey, String region) {
3333
}
3434

3535
public AnalyticsClient(String appId, String apiKey, String region, ClientOptions options) {
36-
super(appId, apiKey, "Analytics", "4.2.0-SNAPSHOT", options);
36+
super(appId, apiKey, "Analytics", "4.2.1-SNAPSHOT", options);
3737
if (options != null && options.getHosts() != null) {
3838
this.setHosts(options.getHosts());
3939
} else {

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/InsightsClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public InsightsClient(String appId, String apiKey, String region) {
3333
}
3434

3535
public InsightsClient(String appId, String apiKey, String region, ClientOptions options) {
36-
super(appId, apiKey, "Insights", "4.2.0-SNAPSHOT", options);
36+
super(appId, apiKey, "Insights", "4.2.1-SNAPSHOT", options);
3737
if (options != null && options.getHosts() != null) {
3838
this.setHosts(options.getHosts());
3939
} else {

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/PersonalizationClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public PersonalizationClient(String appId, String apiKey, String region) {
2525
}
2626

2727
public PersonalizationClient(String appId, String apiKey, String region, ClientOptions options) {
28-
super(appId, apiKey, "Personalization", "4.2.0-SNAPSHOT", options);
28+
super(appId, apiKey, "Personalization", "4.2.1-SNAPSHOT", options);
2929
if (options != null && options.getHosts() != null) {
3030
this.setHosts(options.getHosts());
3131
} else {

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/PredictClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public PredictClient(String appId, String apiKey, String region) {
2525
}
2626

2727
public PredictClient(String appId, String apiKey, String region, ClientOptions options) {
28-
super(appId, apiKey, "Predict", "4.2.0-SNAPSHOT", options);
28+
super(appId, apiKey, "Predict", "4.2.1-SNAPSHOT", options);
2929
if (options != null && options.getHosts() != null) {
3030
this.setHosts(options.getHosts());
3131
} else {

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/QuerySuggestionsClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public QuerySuggestionsClient(String appId, String apiKey, String region) {
2525
}
2626

2727
public QuerySuggestionsClient(String appId, String apiKey, String region, ClientOptions options) {
28-
super(appId, apiKey, "QuerySuggestions", "4.2.0-SNAPSHOT", options);
28+
super(appId, apiKey, "QuerySuggestions", "4.2.1-SNAPSHOT", options);
2929
if (options != null && options.getHosts() != null) {
3030
this.setHosts(options.getHosts());
3131
} else {

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/RecommendClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public RecommendClient(String appId, String apiKey) {
2727
}
2828

2929
public RecommendClient(String appId, String apiKey, ClientOptions options) {
30-
super(appId, apiKey, "Recommend", "4.2.0-SNAPSHOT", options);
30+
super(appId, apiKey, "Recommend", "4.2.1-SNAPSHOT", options);
3131
if (options != null && options.getHosts() != null) {
3232
this.setHosts(options.getHosts());
3333
} else {

clients/algoliasearch-client-java-2/algoliasearch-core/src/main/java/com/algolia/api/SearchClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public SearchClient(String appId, String apiKey) {
2828
}
2929

3030
public SearchClient(String appId, String apiKey, ClientOptions options) {
31-
super(appId, apiKey, "Search", "4.2.0-SNAPSHOT", options);
31+
super(appId, apiKey, "Search", "4.2.1-SNAPSHOT", options);
3232
if (options != null && options.getHosts() != null) {
3333
this.setHosts(options.getHosts());
3434
} else {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
GROUP=com.algolia
2-
VERSION_NAME=4.2.0-SNAPSHOT
2+
VERSION_NAME=4.2.1-SNAPSHOT

clients/algoliasearch-client-javascript/packages/algoliasearch/lite/src/liteClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import type {
2020
import type { SearchMethodParams } from '../model/searchMethodParams';
2121
import type { SearchResponses } from '../model/searchResponses';
2222

23-
export const apiClientVersion = '0.6.0';
23+
export const apiClientVersion = '0.6.1';
2424

2525
function getDefaultHosts(appId: string): Host[] {
2626
return (

clients/algoliasearch-client-javascript/packages/client-abtesting/src/abtestingClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import type {
2727
} from '../model/clientMethodProps';
2828
import type { ListABTestsResponse } from '../model/listABTestsResponse';
2929

30-
export const apiClientVersion = '0.6.0';
30+
export const apiClientVersion = '0.6.1';
3131

3232
export const REGIONS = ['de', 'us'] as const;
3333
export type Region = typeof REGIONS[number];

clients/algoliasearch-client-javascript/packages/client-analytics/src/analyticsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import type { GetTopHitsResponse } from '../model/getTopHitsResponse';
5353
import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
5454
import type { GetUsersCountResponse } from '../model/getUsersCountResponse';
5555

56-
export const apiClientVersion = '0.6.0';
56+
export const apiClientVersion = '0.6.1';
5757

5858
export const REGIONS = ['de', 'us'] as const;
5959
export type Region = typeof REGIONS[number];

clients/algoliasearch-client-javascript/packages/client-insights/src/insightsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import type {
2121
import type { InsightEvents } from '../model/insightEvents';
2222
import type { PushEventsResponse } from '../model/pushEventsResponse';
2323

24-
export const apiClientVersion = '0.6.0';
24+
export const apiClientVersion = '0.6.1';
2525

2626
export const REGIONS = ['de', 'us'] as const;
2727
export type Region = typeof REGIONS[number];

clients/algoliasearch-client-javascript/packages/client-personalization/src/personalizationClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import type { GetUserTokenResponse } from '../model/getUserTokenResponse';
2525
import type { PersonalizationStrategyParams } from '../model/personalizationStrategyParams';
2626
import type { SetPersonalizationStrategyResponse } from '../model/setPersonalizationStrategyResponse';
2727

28-
export const apiClientVersion = '0.6.0';
28+
export const apiClientVersion = '0.6.1';
2929

3030
export const REGIONS = ['eu', 'us'] as const;
3131
export type Region = typeof REGIONS[number];

clients/algoliasearch-client-javascript/packages/client-predict/src/predictClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import type {
2121
} from '../model/clientMethodProps';
2222
import type { FetchUserProfileResponse } from '../model/fetchUserProfileResponse';
2323

24-
export const apiClientVersion = '0.6.0';
24+
export const apiClientVersion = '0.6.1';
2525

2626
export const REGIONS = ['ue', 'ew'] as const;
2727
export type Region = typeof REGIONS[number];

clients/algoliasearch-client-javascript/packages/client-query-suggestions/src/querySuggestionsClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import type { QuerySuggestionsIndexWithIndexParam } from '../model/querySuggesti
2929
import type { Status } from '../model/status';
3030
import type { SuccessResponse } from '../model/successResponse';
3131

32-
export const apiClientVersion = '0.6.0';
32+
export const apiClientVersion = '0.6.1';
3333

3434
export const REGIONS = ['eu', 'us'] as const;
3535
export type Region = typeof REGIONS[number];

clients/algoliasearch-client-javascript/packages/client-search/src/searchClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ import type { UpdatedAtWithObjectIdResponse } from '../model/updatedAtWithObject
111111
import type { UpdatedRuleResponse } from '../model/updatedRuleResponse';
112112
import type { UserId } from '../model/userId';
113113

114-
export const apiClientVersion = '0.6.0';
114+
export const apiClientVersion = '0.6.1';
115115

116116
function getDefaultHosts(appId: string): Host[] {
117117
return (

clients/algoliasearch-client-javascript/packages/client-sources/src/sourcesClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import type {
2121
import type { PostIngestUrlResponse } from '../model/postIngestUrlResponse';
2222
import type { PostURLJob } from '../model/postURLJob';
2323

24-
export const apiClientVersion = '0.6.0';
24+
export const apiClientVersion = '0.6.1';
2525

2626
export const REGIONS = ['de', 'us'] as const;
2727
export type Region = typeof REGIONS[number];

clients/algoliasearch-client-javascript/packages/recommend/src/recommendClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import type {
2222
import type { GetRecommendationsParams } from '../model/getRecommendationsParams';
2323
import type { GetRecommendationsResponse } from '../model/getRecommendationsResponse';
2424

25-
export const apiClientVersion = '0.6.0';
25+
export const apiClientVersion = '0.6.1';
2626

2727
function getDefaultHosts(appId: string): Host[] {
2828
return (

clients/algoliasearch-client-php/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algolia/algoliasearch-client-php",
3-
"version": "4.0.0-alpha.2",
3+
"version": "4.0.0-alpha.3",
44
"description": "API powering the features of Algolia.",
55
"keywords": [
66
"openapitools",

tests/output/java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
testImplementation 'com.algolia:algoliasearch-client-java:4.2.0-SNAPSHOT'
10+
testImplementation 'com.algolia:algoliasearch-client-java:4.2.1-SNAPSHOT'
1111
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
1212
testImplementation 'org.skyscreamer:jsonassert:1.5.0'
1313
testImplementation 'com.google.code.gson:gson:2.9.0'

0 commit comments

Comments
 (0)