Skip to content

Update version for the next release (v0.8.0) #488

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Nov 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -401,15 +401,15 @@ getting_started_add_documents_md: |-
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.7.2</version>
<version>0.8.0</version>
<type>pom</type>
</dependency>
```

**Gradle**
Add the following line to the `dependencies` section of your `build.gradle`:
```groovy
implementation 'com.meilisearch.sdk:meilisearch-java:0.7.2'
implementation 'com.meilisearch.sdk:meilisearch-java:0.8.0'
```

```java
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Add the following code to the `<dependencies>` section of your project:
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.7.2</version>
<version>0.8.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -66,7 +66,7 @@ Add the following code to the `<dependencies>` section of your project:
Add the following line to the `dependencies` section of your `build.gradle`:

```groovy
implementation 'com.meilisearch.sdk:meilisearch-java:0.7.2'
implementation 'com.meilisearch.sdk:meilisearch-java:0.8.0'
```

### Run Meilisearch <!-- omit in toc -->
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {

group = 'com.meilisearch.sdk'
archivesBaseName = 'meilisearch-java'
version = '0.7.2'
version = '0.8.0'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down