-
Notifications
You must be signed in to change notification settings - Fork 0
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
Instructions for releasing new version #4
base: master
Are you sure you want to change the base?
Conversation
# How to release a new version | ||
|
||
* Ensure working dir is clean | ||
* Make sure tests pass with `mix test` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are no tests to run
* Update version in `mix.exs` | ||
* Update `CHANGELOG.md` | ||
* Create a commit: | ||
|
||
```sh | ||
git commit -a -m "Bump version to 0.X.Y" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't that skip review?
@@ -0,0 +1,10 @@ | |||
FROM elixir:1.11.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we also add .tool-versions
?
```sh | ||
git commit -a -m "Bump version to 0.X.Y" | ||
git tag v0.X.Y | ||
mix hex.user auth |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed each time?
Instructions for releasing new version