Skip to content

Commit

Permalink
Add releasing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Jul 5, 2018
1 parent 50af60a commit bc5f91d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Releasing

1. Bump version in `marshmallow/__init__.py` and update the changelog
with today's date.
2. Commit: `git commit -m "Bump version and update changelog"`
3. Tag the commit: `git tag x.y.z`
4. Push: `git push --tags origin dev`. TravisCI will take care of the
PyPI release.
5. If it's a 3.0 pre-release, merge `dev` into `3.0` and push.

```
git checkout 3.0
git merge dev
git push origin 3.0
```

0 comments on commit bc5f91d

Please sign in to comment.