1. Leave the description blank
1. For pre-releases:
- Tick the "This is a pre-release" checkbox
1. Click the "Publish release" button
Post-release
1. Create `{minor-version}.latest` branch. Example:
- `git checkout -b 1.5.latest`
- Update the branch names in `dev-requirements.txt` from `{previous-version}.latest` (or `main`) to `{minor-version}.latest`
- `git push`
1. Bump the version in `main` to be the next minor alpha. Example:
- `git checkout main`
- `git pull`
- `git checkout -b bump-1.6.0a1`
- Minor releases:
`bump-my-version bump --no-tag --new-version 1.6.0a1 num`
- Update the branch names in `dev-requirements.txt` from `{previous-version}.latest` to `{minor-version}.latest` (or `main`)
- Commit with message `Bump dbt-mysql 1.6.0a1`
- `git push`
Unreleased (TBD)
Features
- Migrate CircleCI to GitHub Actions ([120](https://github.com/dbeatty10/dbt-mysql/issues/120))
- Support dbt v1.4 ([146](https://github.com/dbeatty10/dbt-mysql/pull/146))
- Support dbt v1.5 ([145](https://github.com/dbeatty10/dbt-mysql/issues/145))
- Support connecting via UNIX sockets ([164](https://github.com/dbeatty10/dbt-mysql/issues/164))
- Support Black & MyPy pre-commit hooks ([138](https://github.com/dbeatty10/dbt-mysql/issues/138))
Fixes
- Fix incremental composite keys ([144](https://github.com/dbeatty10/dbt-mysql/issues/144))
- Fix UnicodeDecodeErorr on setup.py ([160](https://github.com/dbeatty10/dbt-mysql/issues/160))
Contributors
- [lpezet](https://github.com/lpezet) ([#146](https://github.com/dbeatty10/dbt-mysql/pull/146))
- [moszutij](https://github.com/moszutij) ([#146](https://github.com/dbeatty10/dbt-mysql/pull/146), [#144](https://github.com/dbeatty10/dbt-mysql/issues/144))
- [wesen](https://github.com/wesen) ([#146](https://github.com/dbeatty10/dbt-mysql/pull/146))
- [mwallace582](https://github.com/mwallace582) ([#162](https://github.com/dbeatty10/dbt-mysql/pull/162), [#163](https://github.com/dbeatty10/dbt-mysql/pull/163), [#164](https://github.com/dbeatty10/dbt-mysql/issues/164), [#138](https://github.com/dbeatty10/dbt-mysql/issues/138))
- [sagunn-echo](https://github.com/sagunn-echo) ([#160](https://github.com/dbeatty10/dbt-mysql/issues/160))