Skip to content

chore: remove alpha/beta from readmes #3660

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 4 commits into from
Sep 6, 2024
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 clients/algoliasearch-client-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ To get started, add the algoliasearch-client-java dependency to your project, ei
<dependency>
<groupId>com.algolia</groupId>
<artifactId>algoliasearch</artifactId>
<version>4.0.0-beta.36</version>
<version>[4,)</version>
</dependency>
```

or [Gradle](https://gradle.org/):

```java
dependencies {
implementation 'com.algolia:algoliasearch:4.0.0-beta.36'
implementation 'com.algolia:algoliasearch:4.+'
}
```

Expand Down
6 changes: 3 additions & 3 deletions clients/algoliasearch-client-swift/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ If you're a framework author and use Swift API Client as a dependency, update yo
let package = Package(
// 9.0.0 ..< 10.0.0
dependencies: [
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "9.0.0-beta.6")
.package(url: "https://github.com/algolia/algoliasearch-client-swift", from: "9.0.0")
],
// ...
)
Expand All @@ -75,7 +75,7 @@ let package = Package(
To install Algolia Swift Client, simply add the following line to your Podfile:

```ruby
pod 'AlgoliaSearchClient', '~> 9.0.0-alpha.0'
pod 'AlgoliaSearchClient', '~> 9.0.0'
# pod 'InstantSearchClient', '~> 7.0' // Swift 5.9 NOT YET RELEASED
```

Expand All @@ -91,7 +91,7 @@ $ pod update

- To install InstantSearch, simply add the following line to your Cartfile:
```ruby
github "algolia/algoliasearch-client-swift" ~> 9.0.0-alpha.0
github "algolia/algoliasearch-client-swift" ~> 9.0.0
```

- Launch the following commands from the project directory (for v.8.0+)
Expand Down
Loading