From c2e1cdc20baaf53c8868ccb6901d41c0afc785d5 Mon Sep 17 00:00:00 2001 From: Enda Phelan Date: Tue, 26 Apr 2022 11:30:29 +0100 Subject: [PATCH] chore: release 0.4.0 --- RELEASING.md | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index 0dcdf33..dfc7c9f 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -5,13 +5,13 @@ Here are the steps you need to take in order to create a new release of the `api ## Bump version in `package.json` 1. `git checkout -b release-1.0.0`. -2. Set the value of `version` in [setup.py](./setup.py) to "1.0.0". -3. `git add setup.py && git commit -m "chore: release 1.0.0"`. +2. Set the value of `version` in [package.json](./package.json) to "1.0.0". +3. `git add package.json && git commit -m "chore: release 1.0.0"`. 4. Create a pull request and merge it to `main`. ## Create release 1. `git tag 1.0.0`. 2. `git push 1.0.0`. -3. The [Publish package to npmjs](https://github.com/Apicurio/apicurio-registry-client-sdk-js/actions/workflows/npm-publish.yml) will start to publish the package to npm. +3. The [Publish package to npmjs](https://github.com/Apicurio/apicurio-registry-client-sdk-js/actions/workflows/npm-publish.yml) workflow will start to publish the package to npm. 4. Once completed, the new package version should be available on [npm](https://www.npmjs.com/package/apicurio-registry-client). diff --git a/package.json b/package.json index 1ca854e..47330a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apicurio-registry-client", - "version": "0.3.0", + "version": "0.4.0", "description": "Apicurio Registry client for JavaScript", "main": "./dist/index.js", "typings": "./dist/index.d.ts",