Skip to content

Commit af80da0

Browse files
committed
Bump version.
1 parent 446b4fd commit af80da0

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

README.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ must be installed.
9999
# -- or with official installer
100100
# curl -sSL https://install.python-poetry.org | python3 -
101101
102+
# I recommend creating virtual environment in the project folder
103+
poetry config virtualenvs.in-project true
104+
102105
103106
Then the following commands can be run:
104107

@@ -131,7 +134,7 @@ Then the following commands can be run:
131134
# deactivate environment
132135
(project_env) conda deactivate
133136
134-
Or with just Poetry:
137+
Or without ``conda`` and just Poetry:
135138

136139
.. code:: bash
137140

docs/source/packaging.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -165,18 +165,18 @@ Or if there are issues with rendering the README file, you can check the logs wi
165165
Creating a new release on GitHub
166166
--------------------------------
167167

168-
For a new release, you should create a new tag on GitHub. This can be done with the command below:
168+
For a new release, you need to create a new tag on GitHub. This can be done with the commands below:
169169

170170
.. code:: bash
171171
172172
git tag -a X.X.X -m "version X.X.X"
173173
git push origin X.X.X
174174
175-
If you project is hosted on GitHub, you can create a new release by:
175+
You can create a new release with the following steps:
176176

177-
#. Clicking (the rightmost) "..." dropdown menu (from the `tags page <https://github.com/ebezzam/python-dev-tips/tags>`_).
178-
#. Selecting "Create release".
179-
#. At the bottom pressing "Publish release".
177+
#. From the `tags page <https://github.com/ebezzam/python-dev-tips/tags>`_, click (the rightmost) "..." dropdown menu.
178+
#. Select "Create release".
179+
#. At the bottom, press "Publish release".
180180

181181

182182
setup.py (old way)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ build-backend = "poetry.core.masonry.api"
3535

3636
[project]
3737
name = "pydevtips"
38-
version = "0.0.3"
38+
version = "0.0.4"
3939
authors = [
4040
{ name="Eric Bezzam", email="[email protected]" },
4141
]

0 commit comments

Comments
 (0)