Bump version to 9.0.0-alpha.1 (#2516)

* Bump version to 9.0.0-alpha.1

* Update npm publish workflow for 9.0.0 alpha
This commit is contained in:
Josh Mock
2024-12-05 10:40:34 -06:00
committed by GitHub
parent 15b9ee2f06
commit e9c2f8b0af
2 changed files with 6 additions and 5 deletions

View File

@ -23,13 +23,14 @@ jobs:
- run: npm install -g npm
- run: npm install
- run: npm test
- run: npm publish --provenance --access public
- run: npm publish --provenance --access public --tag alpha
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: |
- name: Publish version on GitHub
run: |
version=$(jq -r .version package.json)
gh release create \
-n "[Changelog](https://www.elastic.co/guide/en/elasticsearch/client/javascript-api/$BRANCH_NAME/changelog-client.html)" \
-n "This is a 9.0.0 pre-release alpha. Changes may not be stable." \
--target "$BRANCH_NAME" \
-t "v$version" \
"v$version"

View File

@ -1,7 +1,7 @@
{
"name": "@elastic/elasticsearch",
"version": "8.16.0",
"versionCanary": "8.16.0-canary.0",
"version": "9.0.0-alpha.1",
"versionCanary": "9.0.0-canary.0",
"description": "The official Elasticsearch client for Node.js",
"main": "./index.js",
"types": "index.d.ts",