Skip to content

Commit cd61a8c

Browse files
Merge #1653
1653: Update version for the next release (v0.40.0) r=curquiza a=meili-bot - Fix the issue introduced in the v0.39 that affected vite apps #1652 `@brunoocasali` - Now to use the `generateTenantToken` you should use it with `await`: before: ```js const token = client.generateTenantToken(apiKeyUid, searchRules, { apiKey: apiKey, expiresAt: expiresAt, }) ``` after: ```js const token = await client.generateTenantToken(apiKeyUid, searchRules, { apiKey: apiKey, expiresAt: expiresAt, }) ``` Co-authored-by: meili-bot <[email protected]>
2 parents 9639f78 + f53131f commit cd61a8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meilisearch",
3-
"version": "0.39.0",
3+
"version": "0.40.0",
44
"description": "The Meilisearch JS client for Node.js and the browser.",
55
"keywords": [
66
"meilisearch",

src/package-version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const PACKAGE_VERSION = '0.39.0'
1+
export const PACKAGE_VERSION = '0.40.0'

0 commit comments

Comments
 (0)