Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v1.9.0 #107

Merged
merged 1 commit into from
Aug 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ Some personal notes on creating/editing gifs are in the [Github wiki](https://gi

### 📌 Release

1. Create a new branch called `release-v1.9.0`, for example, from the `main` branch.
1. Bump the version number in [`__version__.py`](lgtm_db/__version__.py) and commit with a commit message `release: v1.9.0`. And push up to remote.
1. Create a new branch called `release-v1.10.0`, for example, from the `main` branch.
1. Bump the version number in [`__version__.py`](lgtm_db/__version__.py) and commit with a commit message `release: v1.10.0`. And push up to remote.
1. Create a PR, attach the following output
```shell
git log --oneline --no-decorate --perl-regexp --author='^(?!.*\[bot\]).*$' HEAD ^v1.8.0
git log --oneline --no-decorate --perl-regexp --author='^(?!.*\[bot\]).*$' HEAD ^v1.9.0
```
to the PR description. Merge this branch into `main`.
1. Then tag the ref, `git tag v1.9.0`, for example, on the `main` branch. Push the tags to remote.
1. Then tag the ref, `git tag v1.10.0`, for example, on the `main` branch. Push the tags to remote.

## ⚡️ Inspiration

Expand Down
2 changes: 1 addition & 1 deletion lgtm_db/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.0"
__version__ = "1.9.0"