Skip to content

Commit

Permalink
Bump version: 1.7.0 → 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed May 23, 2023
1 parent 7c8a04b commit 735eaaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.7.0
current_version = 1.7.1
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.7.0"
__version__ = "1.7.1"
6 changes: 3 additions & 3 deletions release.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@

# fully automated

$ ./release.sh 1.7.0
$ ./release.sh 1.7.1

# semi automated
To make a new release
```
# update reacton/_version.py
$ git add -u && git commit -m 'Release v1.7.0' && git tag v1.7.0 && git push upstream master v1.7.0
$ git add -u && git commit -m 'Release v1.7.1' && git tag v1.7.1 && git push upstream master v1.7.1
```


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

0 comments on commit 735eaaf

Please sign in to comment.