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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+19-10Lines changed: 19 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -159,16 +159,25 @@ If you don't have the access to do it, please request it internally.
159
159
160
160
Here are the steps to release a beta version of this package:
161
161
162
-
- Create a new branch originating the branch containing the "beta" changes. For example, if during the Meilisearch pre-release, create a branch originating `bump-meilisearch-v*.*.*`.<br>
163
-
`vX.X.X` is the next version of the package, NOT the version of Meilisearch!
164
-
165
-
```bash
166
-
git checkout bump-meilisearch-v*.*.*
167
-
git pull origin bump-meilisearch-v*.*.*
168
-
git checkout -b vX.X.X-beta.0
169
-
```
170
-
171
-
- Change the version in `package.json` by `vX.X.X-beta.0` and commit it to the `vX.X.X-beta.0` branch
162
+
- Create a new branch containing the "beta" changes with the following format `xxx-beta` where `xxx` explains the context.
163
+
164
+
For example:
165
+
- When implementing a beta feature, create a branch `my-feature-beta` where you implement the feature.
166
+
```bash
167
+
git checkout -b my-feature-beta
168
+
```
169
+
- During the Meilisearch pre-release, create a branch originating from `bump-meilisearch-v*.*.*` named `bump-meilisearch-v*.*.*-beta`. <br>
170
+
`v*.*.*` is the next version of the package, NOT the version of Meilisearch!
171
+
172
+
```bash
173
+
git checkout bump-meilisearch-v*.*.*
174
+
git pull origin bump-meilisearch-v*.*.*
175
+
git checkout -b bump-meilisearch-v*.*.*-beta
176
+
```
177
+
178
+
- Change the version in`package.json` with `*.*.*-xxx-beta.0` and commit it to the `v*.*.*-beta` branch. None or multiple `-xxx`are valid. Examples:
179
+
- `v*.*.*-my-feature-beta.0`
180
+
- `v*.*.*-beta.0`
172
181
173
182
- Go to the [GitHub interface for releasing](https://github.com/meilisearch/instant-meilisearch/releases): on this page, click on `Draft a new release`.
0 commit comments