Skip to content

Commit 18d8112

Browse files
authored
chore: add changelog for v3.25.0 [skip ci] (#692)
1 parent 962dec5 commit 18d8112

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

ChangeLog.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# ChangeLog
22

3+
## [3.25.0](https://github.com/algolia/algoliasearch-client-go/compare/v3.24.0...v3.25.0) (2022-04-13)
4+
5+
### Feat
6+
7+
- update wait task max wait time (#691) ([96f7484](https://github.com/algolia/algoliasearch-client-go/commit/96f7484))
8+
9+
310
## [3.24.0](https://github.com/algolia/algoliasearch-client-go/compare/v3.23.0...3.24.0) (2022-03-25)
411

512
### Fix
@@ -329,39 +336,39 @@
329336
- correctly migrate to Go modules by using v3/ suffix for Semantic Import Versioning ([6be7683](https://github.com/algolia/algoliasearch-client-go/commit/6be7683))
330337

331338
**Manual Intervention Required**
332-
339+
333340
Our migration to Go modules starting at version v3.0.0 of this Go API
334341
client was done incorrectly since our module declaration was not
335342
including the required `v3/` suffix. This commit fixes this issue by
336343
respecting the Semantic Import Versioning described by the Go wiki.
337-
344+
338345
**Step 1/2**
339-
346+
340347
To update your project which depends on the Algolia Go API client, you
341348
need to replace all `github.com/algolia/algoliasearch-client-go/*`
342349
import statements with `github.com/algolia/algoliasearch-client-go/v3/*`
343350
instead. The following shell one-liner can be used to perform this
344351
change:
345-
352+
346353
```
347354
for f in $(find . -type f); do
348355
sed -i '' 's:github.com/algolia/algoliasearch-client-go:github.com/algolia/algoliasearch-client-go/v3:g' $f
349356
done
350-
357+
351358
for f in $(find . -type f); do
352359
sed -i 's:github.com/algolia/algoliasearch-client-go:github.com/algolia/algoliasearch-client-go/v3:g' $f
353360
done
354361
```
355-
362+
356363
**Step 2/2**
357-
364+
358365
After that, make sure to import the Algolia Go client dependency as such
359366
in your `go.mod` file:
360-
367+
361368
```
362369
require github.com/algolia/algoliasearch-client-go/v3 v3.X.Y
363370
```
364-
371+
365372
where `v3.X.z` stands for the exact release tag you want to use.
366373
367374

0 commit comments

Comments
 (0)