Skip to content

Commit 7650e52

Browse files
chore: release 2022-07-25 [skip ci]
Co-authored-by: Clément Vannicatte <[email protected]>
1 parent 4307b20 commit 7650e52

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
@@ -35,7 +35,7 @@ public AbtestingClient(String appId, String apiKey, String region) {
3535
}
3636

3737
public AbtestingClient(String appId, String apiKey, String region, ClientOptions options) {
38-
super(appId, apiKey, "Abtesting", "4.3.0-SNAPSHOT", options);
38+
super(appId, apiKey, "Abtesting", "4.4.0-SNAPSHOT", options);
3939
if (options != null && options.getHosts() != null) {
4040
this.setHosts(options.getHosts());
4141
} 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
@@ -35,7 +35,7 @@ public AnalyticsClient(String appId, String apiKey, String region) {
3535
}
3636

3737
public AnalyticsClient(String appId, String apiKey, String region, ClientOptions options) {
38-
super(appId, apiKey, "Analytics", "4.3.0-SNAPSHOT", options);
38+
super(appId, apiKey, "Analytics", "4.4.0-SNAPSHOT", options);
3939
if (options != null && options.getHosts() != null) {
4040
this.setHosts(options.getHosts());
4141
} 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
@@ -35,7 +35,7 @@ public InsightsClient(String appId, String apiKey, String region) {
3535
}
3636

3737
public InsightsClient(String appId, String apiKey, String region, ClientOptions options) {
38-
super(appId, apiKey, "Insights", "4.3.0-SNAPSHOT", options);
38+
super(appId, apiKey, "Insights", "4.4.0-SNAPSHOT", options);
3939
if (options != null && options.getHosts() != null) {
4040
this.setHosts(options.getHosts());
4141
} 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
@@ -27,7 +27,7 @@ public PersonalizationClient(String appId, String apiKey, String region) {
2727
}
2828

2929
public PersonalizationClient(String appId, String apiKey, String region, ClientOptions options) {
30-
super(appId, apiKey, "Personalization", "4.3.0-SNAPSHOT", options);
30+
super(appId, apiKey, "Personalization", "4.4.0-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/PredictClient.java

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

2929
public PredictClient(String appId, String apiKey, String region, ClientOptions options) {
30-
super(appId, apiKey, "Predict", "4.3.0-SNAPSHOT", options);
30+
super(appId, apiKey, "Predict", "4.4.0-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/QuerySuggestionsClient.java

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

2929
public QuerySuggestionsClient(String appId, String apiKey, String region, ClientOptions options) {
30-
super(appId, apiKey, "QuerySuggestions", "4.3.0-SNAPSHOT", options);
30+
super(appId, apiKey, "QuerySuggestions", "4.4.0-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/RecommendClient.java

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

3131
public RecommendClient(String appId, String apiKey, ClientOptions options) {
32-
super(appId, apiKey, "Recommend", "4.3.0-SNAPSHOT", options);
32+
super(appId, apiKey, "Recommend", "4.4.0-SNAPSHOT", options);
3333
if (options != null && options.getHosts() != null) {
3434
this.setHosts(options.getHosts());
3535
} 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
@@ -30,7 +30,7 @@ public SearchClient(String appId, String apiKey) {
3030
}
3131

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

44
SONATYPE_HOST=DEFAULT
55
RELEASE_SIGNING_ENABLED=true

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

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

25-
export const apiClientVersion = '5.0.0-alpha.0';
25+
export const apiClientVersion = '5.0.0-alpha.1';
2626

2727
function getDefaultHosts(appId: string): Host[] {
2828
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
@@ -29,7 +29,7 @@ import type {
2929
} from '../model/clientMethodProps';
3030
import type { ListABTestsResponse } from '../model/listABTestsResponse';
3131

32-
export const apiClientVersion = '5.0.0-alpha.0';
32+
export const apiClientVersion = '5.0.0-alpha.1';
3333

3434
export const REGIONS = ['de', 'us'] as const;
3535
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
@@ -55,7 +55,7 @@ import type { GetTopHitsResponse } from '../model/getTopHitsResponse';
5555
import type { GetTopSearchesResponse } from '../model/getTopSearchesResponse';
5656
import type { GetUsersCountResponse } from '../model/getUsersCountResponse';
5757

58-
export const apiClientVersion = '5.0.0-alpha.0';
58+
export const apiClientVersion = '5.0.0-alpha.1';
5959

6060
export const REGIONS = ['de', 'us'] as const;
6161
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
@@ -23,7 +23,7 @@ import type {
2323
import type { InsightEvents } from '../model/insightEvents';
2424
import type { PushEventsResponse } from '../model/pushEventsResponse';
2525

26-
export const apiClientVersion = '5.0.0-alpha.0';
26+
export const apiClientVersion = '5.0.0-alpha.1';
2727

2828
export const REGIONS = ['de', 'us'] as const;
2929
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
@@ -27,7 +27,7 @@ import type { GetUserTokenResponse } from '../model/getUserTokenResponse';
2727
import type { PersonalizationStrategyParams } from '../model/personalizationStrategyParams';
2828
import type { SetPersonalizationStrategyResponse } from '../model/setPersonalizationStrategyResponse';
2929

30-
export const apiClientVersion = '5.0.0-alpha.0';
30+
export const apiClientVersion = '5.0.0-alpha.1';
3131

3232
export const REGIONS = ['eu', 'us'] as const;
3333
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
@@ -31,7 +31,7 @@ import type { QuerySuggestionsIndexWithIndexParam } from '../model/querySuggesti
3131
import type { Status } from '../model/status';
3232
import type { SuccessResponse } from '../model/successResponse';
3333

34-
export const apiClientVersion = '5.0.0-alpha.0';
34+
export const apiClientVersion = '5.0.0-alpha.1';
3535

3636
export const REGIONS = ['eu', 'us'] as const;
3737
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
@@ -116,7 +116,7 @@ import type { UpdatedAtWithObjectIdResponse } from '../model/updatedAtWithObject
116116
import type { UpdatedRuleResponse } from '../model/updatedRuleResponse';
117117
import type { UserId } from '../model/userId';
118118

119-
export const apiClientVersion = '5.0.0-alpha.0';
119+
export const apiClientVersion = '5.0.0-alpha.1';
120120

121121
function getDefaultHosts(appId: string): Host[] {
122122
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
@@ -23,7 +23,7 @@ import type {
2323
import type { PostIngestUrlResponse } from '../model/postIngestUrlResponse';
2424
import type { PostURLJob } from '../model/postURLJob';
2525

26-
export const apiClientVersion = '1.0.0-alpha.0';
26+
export const apiClientVersion = '1.0.0-alpha.1';
2727

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

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

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

26-
export const apiClientVersion = '1.0.0-alpha.0';
26+
export const apiClientVersion = '1.0.0-alpha.1';
2727

2828
export const REGIONS = ['ue', 'ew'] as const;
2929
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
@@ -24,7 +24,7 @@ import type {
2424
import type { GetRecommendationsParams } from '../model/getRecommendationsParams';
2525
import type { GetRecommendationsResponse } from '../model/getRecommendationsResponse';
2626

27-
export const apiClientVersion = '5.0.0-alpha.0';
27+
export const apiClientVersion = '5.0.0-alpha.1';
2828

2929
function getDefaultHosts(appId: string): Host[] {
3030
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.5",
3+
"version": "4.0.0-alpha.6",
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.3.0-SNAPSHOT'
10+
testImplementation 'com.algolia:algoliasearch-client-java:4.4.0-SNAPSHOT'
1111
testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
1212
testImplementation 'org.skyscreamer:jsonassert:1.5.1'
1313
testImplementation 'com.fasterxml.jackson.core:jackson-core:2.13.3'

0 commit comments

Comments
 (0)