You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update search route request and response parameters naming v0.28.x
* Pass client agent to meilisearch-js
* Improve check release script
* Use double quotes on string with no dynamic variable in check releases script
* Add missing whitespace in check-release.sh
* Add possibility to provide client agents through the parameters of instantMeilisearch
* Fix search resolver tests
Co-authored-by: Charlotte Vermandel <[email protected]>
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -131,10 +131,16 @@ _[Read more about this](https://github.com/meilisearch/integration-guides/blob/m
131
131
132
132
⚠️ Before doing anything, make sure you got through the guide about [Releasing an Integration](https://github.com/meilisearch/integration-guides/blob/main/resources/integration-release.md).
133
133
134
-
Make a PR modifying the file [`package.json`](/package.json) with the right version.
134
+
Make a PR modifying the following files with the right version:
135
135
136
+
[`package.json`](/package.json):
136
137
```javascript
137
-
"version":"X.X.X"
138
+
"version":"X.X.X",
139
+
```
140
+
141
+
[`src/package-version`](/src/package-version.ts)
142
+
```javascript
143
+
exportconstPACKAGE_VERSION='X.X.X'
138
144
```
139
145
140
146
Once the changes are merged on `main`, you can publish the current draft release via the [GitHub interface](https://github.com/meilisearch/instant-meilisearch/releases): on this page, click on `Edit` (related to the draft release) > update the description (be sure you apply [these recommandations](https://github.com/meilisearch/integration-guides/blob/main/resources/integration-release.md#writting-the-release-description)) > when you are ready, click on `Publish release`.
0 commit comments