Skip to content

Commit a450a32

Browse files
updated version
1 parent dedc4de commit a450a32

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
documentation was updated

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,16 @@ To update a release of a Python package, you'll typically go through the followi
5353
3. Update the `CHANGELOG` or `HISTORY` file (if you have one) to document the changes introduced in the new version.
5454

5555
4. Commit the changes and push them to your version control system (e.g., git).
56-
56+
```shell
57+
git status
58+
git add .
59+
git commit -m "updated version"
60+
git push
61+
```
62+
5763
5. Tag the commit with the version number:
5864
```shell
59-
git tag -a v1.0.1 -m "Release version 1.0.1"
65+
git tag -a v0.1.1 -m "Release version 0.1.1"
6066
git push --tags
6167
```
6268

0 commit comments

Comments
 (0)