API Reference / API Methods / Update the Scala API client

Update the Scala API client

You should keep your Scala API client up to date to benefit from improvements and bug fixes. Algolia’s Service Level Agreement only applies to the latest version of the API client.

The Scala API client follows Semantic Versioning. You can check what the latest version of the API client is on the GitHub release page.

We released a new version of the JavaScript API client in public beta. Read the beta documentation for more information.

We released a new version of the PHP API client in public beta. Read the beta documentation for more information.

We released a new version of the Java API client in public beta. Read the beta documentation for more information.

Update with sbt

Change the version of the algoliasearch dependency:

1
libraryDependencies += "com.algolia" %% "algoliasearch-scala" % "[1,)"

Then run:

1
sbt update

Update with Maven

Change the version of the algoliasearch dependency on the line:

1
2
3
4
5
<dependency>
  <groupId>com.algolia</groupId>
  <artifactId>algoliasearch-scala_2.11</artifactId>
  <version>[1,)</version>
</dependency>

Then run:

1
mvn compile
Did you find this page helpful?