We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9117f05 commit 8f72d48Copy full SHA for 8f72d48
docs/development/building.md
@@ -192,20 +192,25 @@ poetry self add poetry-dynamic-versioning
192
193
### To Release a New Version
194
195
-1. Create and push a tag:
196
-```bash
197
-git tag v1.0.0
198
-git push origin v1.0.0
+1. Set the version to the next patch version:
+```
+poetry version patch
199
```
200
201
-2. Build distribution packages:
+2. Commit your changes and push to the repository.
+
202
```bash
203
-poetry build
+git commit -m "Release version 0.1.3"
204
205
206
-3. Upload to PyPI:
207
208
-poetry publish
+3. Set the tag to the new version:
+git tag v0.1.3
209
210
211
+4. Push the changes to the repository:
212
213
+git push --tags
214
215
216
## Development Guidelines
0 commit comments