From 74315617c53b929393c5e08443b696fe1f2306af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 13 Nov 2024 01:22:00 +0000 Subject: [PATCH] release 3.4.0 (previous release 3.3.0) --- changelog.md | 10 ++++++++++ dlunch/core.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 50e51b6..1e50516 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,13 @@ +## v3.4.0 (2024-11-13) + +### Feat + +- **generate_getting_started.py**: remove text before doc-start anchor, add front matter and title in README.md + +### Refactor + +- **__version__**: move dlunch __version__ from __init__.py to core.py + ## v3.3.0 (2024-07-17) ### Feat diff --git a/dlunch/core.py b/dlunch/core.py index 2869cdc..f7916f7 100644 --- a/dlunch/core.py +++ b/dlunch/core.py @@ -26,7 +26,7 @@ from .auth import pn_user # APP METADATA ---------------------------------------------------------------- -__version__: str = "3.3.0" +__version__: str = "3.4.0" """Data-Lunch version.""" # LOGGER ---------------------------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 370f9ae..68be8d0 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dlunch" -version = "3.3.0" +version = "3.4.0" authors = [ { name="Michele Alberti", email="michele.alberti90@gmail.com" }, ] @@ -56,7 +56,7 @@ exclude = ''' [tool.commitizen] name = "cz_conventional_commits" -version = "3.3.0" +version = "3.4.0" version_files = [ "dlunch/core.py", "pyproject.toml:version",