From 7a27a6e673affb2c673fba71cba89ef72db72500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Due=C3=B1as?= Date: Thu, 2 Jun 2022 18:03:41 +0200 Subject: [PATCH] Release 0.3.0 --- AUTHORS | 4 +++- NEWS | 24 +++++++++++++++++++ graal/_version.py | 4 ++-- pyproject.toml | 2 +- releases/0.3.0.md | 22 +++++++++++++++++ .../unreleased/drop-python-3.6-support.yml | 11 --------- .../fix-error-in-update-worktree.yml | 10 -------- .../include-requirements-for-development.yml | 9 ------- 8 files changed, 52 insertions(+), 34 deletions(-) create mode 100644 NEWS create mode 100644 releases/0.3.0.md delete mode 100644 releases/unreleased/drop-python-3.6-support.yml delete mode 100644 releases/unreleased/fix-error-in-update-worktree.yml delete mode 100644 releases/unreleased/include-requirements-for-development.yml diff --git a/AUTHORS b/AUTHORS index 868b993..15face3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,4 +2,6 @@ Valerio Cosentino inishchith pranjal.aswani SunflowerPKU <746534561@qq.com> -Santiago Dueñas \ No newline at end of file +Santiago Dueñas +Jose Javier Merchante + diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..c6f037a --- /dev/null +++ b/NEWS @@ -0,0 +1,24 @@ +# Releases + +## Graal 0.3.0 - (2022-06-02) + +**New features:** + + * Dependencies file for development\ + Include a new requirements.txt file to install the development version + from the repositories. + +**Bug fixes:** + + * Fix error in update worktree\ + Graal wasn't working with the latest version of Git 2.35.1 because it + protects braches checked out in all worktrees. This change renames the + branch created when creating a worktree to fix the issue. + +**Feature removals:** + + * Drop Python 3.6 support\ + Python 3.6 reached the end of life at the end of 2021. This means it + won't receive new updates or patches to fix security issues. + Therefore, this package will only work with Python >= 3.7 from now on. + diff --git a/graal/_version.py b/graal/_version.py index 1b9debe..cc9c8e6 100644 --- a/graal/_version.py +++ b/graal/_version.py @@ -1,2 +1,2 @@ -# Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440 -__version__ = "0.2.9" +# File auto-generated by semverup on 2022-06-02 15:47:57.601069 +__version__ = "0.3.0" diff --git a/pyproject.toml b/pyproject.toml index 89bfb0b..3aee650 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "graal" -version = "0.2.9" +version = "0.3.0" description = "A generic source code analyzer" authors = [ "GrimoireLab Developers" diff --git a/releases/0.3.0.md b/releases/0.3.0.md new file mode 100644 index 0000000..6945eaf --- /dev/null +++ b/releases/0.3.0.md @@ -0,0 +1,22 @@ +## Graal 0.3.0 - (2022-06-02) + +**New features:** + + * Dependencies file for development\ + Include a new requirements.txt file to install the development version + from the repositories. + +**Bug fixes:** + + * Fix error in update worktree\ + Graal wasn't working with the latest version of Git 2.35.1 because it + protects braches checked out in all worktrees. This change renames the + branch created when creating a worktree to fix the issue. + +**Feature removals:** + + * Drop Python 3.6 support\ + Python 3.6 reached the end of life at the end of 2021. This means it + won't receive new updates or patches to fix security issues. + Therefore, this package will only work with Python >= 3.7 from now on. + diff --git a/releases/unreleased/drop-python-3.6-support.yml b/releases/unreleased/drop-python-3.6-support.yml deleted file mode 100644 index 6c101e0..0000000 --- a/releases/unreleased/drop-python-3.6-support.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- -title: Drop Python 3.6 support -category: removed -author: Jose Javier Merchante -issue: null -notes: > - Python 3.6 reached the end of life at - the end of 2021. This means it won't receive - new updates or patches to fix security issues. - Therefore, this package will only work with - Python >= 3.7 from now on. diff --git a/releases/unreleased/fix-error-in-update-worktree.yml b/releases/unreleased/fix-error-in-update-worktree.yml deleted file mode 100644 index ac4de75..0000000 --- a/releases/unreleased/fix-error-in-update-worktree.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Fix error in update worktree -category: fixed -author: Jose Javier Merchante -issue: #112 -notes: > - Graal wasn't working with the latest version of Git - 2.35.1 because it protects braches checked out in all - worktrees. This change renames the branch created when - creating a worktree to fix the issue. diff --git a/releases/unreleased/include-requirements-for-development.yml b/releases/unreleased/include-requirements-for-development.yml deleted file mode 100644 index 5318303..0000000 --- a/releases/unreleased/include-requirements-for-development.yml +++ /dev/null @@ -1,9 +0,0 @@ ---- -title: Dependencies file for development -category: added -author: Jose Javier Merchante -issue: null -notes: > - Include a new requirements.txt file to install - the development version from the repositories. -