Skip to content

Commit

Permalink
Bump version: 1.8.3 → 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Dec 16, 2024
1 parent 900a396 commit ba8a5ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.8.3
current_version = 1.9.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion reacton/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.3"
__version__ = "1.9.0"
4 changes: 2 additions & 2 deletions release.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
To make a new release
```
# update reacton/_version.py
$ git add -u && git commit -m 'Release v1.8.3' && git tag v1.8.3 && git push upstream master v1.8.3
$ git add -u && git commit -m 'Release v1.9.0' && git tag v1.9.0 && git push upstream master v1.9.0
```


If a problem happens, and you want to keep the history clean
```
# do fix
$ git rebase -i HEAD~3
$ git tag v1.8.3 -f && git push upstream master v1.8.3 -f
$ git tag v1.9.0 -f && git push upstream master v1.9.0 -f
```

0 comments on commit ba8a5ae

Please sign in to comment.