API Reference
/
API Methods
/
Update the client
Jun. 03, 2019
Update the client
Introduction
We recommend keeping the API client up to date, as the SLA applies only if it is up to date.
Semantic Versioning
All our API clients follow Semantic Versioning.
Latest Version
You can check which is the latest version on the GitHub release page.
Update the API client
With sbt
Change the version of the algoliasearch
dependency:
Copy
1
libraryDependencies += "com.algolia" %% "algoliasearch-scala" % "[1,)"
Then run:
Copy
$
sbt update
With Maven
Change the version of the algoliasearch
dependency on the line:
Copy
1
2
3
4
5
<dependency>
<groupId>com.algolia</groupId>
<artifactId>algoliasearch-scala_2.11</artifactId>
<version>[1,)</version>
</dependency>
Then run:
Copy
$
mvn compile