Skip to content

Commit

Permalink
Package increment instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Olshansk committed Jun 16, 2020
1 parent 2c0c617 commit b97006d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,5 +500,15 @@ tests set `async: false` so that only one test runs at a time.
## Help
Open an issue.

## Publishing New Package Versions
For library maintainers, the following is an example of how to publish new versions of the package. Run the following commands assuming you incremented the version in the `mix.exs` file from 0.3.4 to 0.3.5:

```
git commit -am "Increase version from 0.3.4 to 0.3.5"
git tag -a v0.3.5 -m "Git tag 0.3.5"
git push origin --tags
mix hex.publish
```

## Suggestions
I'd welcome suggestions for improvements or bugfixes. Just open an issue.

0 comments on commit b97006d

Please sign in to comment.