From 64fa3e8ec4deee668f6dfdfa9297806d76b88c85 Mon Sep 17 00:00:00 2001 From: Yonatan Goldschmidt Date: Mon, 12 Apr 2021 19:22:56 +0300 Subject: [PATCH] Bump version to 0.0.6 (#28) * Bump version to 0.0.6 * Add "Releasing a new version" section in README --- README.md | 4 ++++ gprofiler/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 73e6048b3..387b5c926 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,10 @@ We welcome all feedback and suggestion through Github Issues: * [Submit bugs and feature requests](https://github.com/granulate/gprofiler/issues) * Upvote [popular feature requests](https://github.com/granulate/gprofiler/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement+sort%3Areactions-%2B1-desc+) +## Releasing a new version +1. Update `__version__` in `__init__.py`. +2. Create a tag with the same version (after merging the `__version__` update) and push it. + We recommend going through our [contribution guide](https://github.com/granulate/gprofiler/blob/master/CONTRIBUTING.md) for more details. # Credits diff --git a/gprofiler/__init__.py b/gprofiler/__init__.py index b1a19e323..034f46c34 100644 --- a/gprofiler/__init__.py +++ b/gprofiler/__init__.py @@ -1 +1 @@ -__version__ = "0.0.5" +__version__ = "0.0.6"