From ee35a87e410891b1a28b3cce0d541e41fad86881 Mon Sep 17 00:00:00 2001
From: pradel <pradel.leo@gmail.com>
Date: Tue, 14 Jul 2020 10:13:57 +0200
Subject: [PATCH] docs: add release section

---
 README.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/README.md b/README.md
index 6332243..cb4959f 100644
--- a/README.md
+++ b/README.md
@@ -36,3 +36,12 @@ module.exports = {
   presets: ["@bitwala/babel-preset/serverless"],
 };
 ```
+
+### Create a new release
+
+1. Edit the version in the `package.json` file.
+2. `git add package.json`.
+3. Commit the changes `git commit -m vx.x.x`.
+4. Create a new git tag `git tag -a vx.x.x -m vx.x.x`.
+5. Run `yarn npm publish` to publish the package to the registry.
+6. Push the changes `git push`.