From af80da02dd334cc1c02dc7b27bcd2e4c1b2c31eb Mon Sep 17 00:00:00 2001 From: Eric Bezzam Date: Wed, 23 Oct 2024 12:17:34 +0200 Subject: [PATCH] Bump version. --- README.rst | 5 ++++- docs/source/packaging.rst | 10 +++++----- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index bd83d62..1a612d2 100644 --- a/README.rst +++ b/README.rst @@ -99,6 +99,9 @@ must be installed. # -- or with official installer # curl -sSL https://install.python-poetry.org | python3 - + # I recommend creating virtual environment in the project folder + poetry config virtualenvs.in-project true + Then the following commands can be run: @@ -131,7 +134,7 @@ Then the following commands can be run: # deactivate environment (project_env) conda deactivate -Or with just Poetry: +Or without ``conda`` and just Poetry: .. code:: bash diff --git a/docs/source/packaging.rst b/docs/source/packaging.rst index f0fd24e..2211767 100644 --- a/docs/source/packaging.rst +++ b/docs/source/packaging.rst @@ -165,18 +165,18 @@ Or if there are issues with rendering the README file, you can check the logs wi Creating a new release on GitHub -------------------------------- -For a new release, you should create a new tag on GitHub. This can be done with the command below: +For a new release, you need to create a new tag on GitHub. This can be done with the commands below: .. code:: bash git tag -a X.X.X -m "version X.X.X" git push origin X.X.X -If you project is hosted on GitHub, you can create a new release by: +You can create a new release with the following steps: -#. Clicking (the rightmost) "..." dropdown menu (from the `tags page `_). -#. Selecting "Create release". -#. At the bottom pressing "Publish release". +#. From the `tags page `_, click (the rightmost) "..." dropdown menu. +#. Select "Create release". +#. At the bottom, press "Publish release". setup.py (old way) diff --git a/pyproject.toml b/pyproject.toml index af7e4cd..2c7caae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ build-backend = "poetry.core.masonry.api" [project] name = "pydevtips" -version = "0.0.3" +version = "0.0.4" authors = [ { name="Eric Bezzam", email="ebezzam@gmail.com" }, ]