Move production code to src/

This commit is contained in:
Hugo 2019-04-05 08:37:01 +03:00
parent df6e31b4ff
commit 1a78c0b99d
5 changed files with 9 additions and 7 deletions

View file

@ -1,13 +1,14 @@
# Release Checklist
* [ ] Get master to the appropriate code release state. [Travis CI](https://travis-ci.org/pylast/pylast) should be running cleanly for all merges to master.
* [ ] Remove `.dev0` suffix from the version and update version and date in the changelog:
```bash
git checkout master
edit CHANGELOG.md pylast/version.py
edit CHANGELOG.md src/pylast/version.py
```
* [ ] Commit and tag with the version number:
```bash
git add CHANGELOG.md pylast/version.py
git add CHANGELOG.md src/pylast/version.py
git commit -m "Release 3.0.0"
git tag -a 3.0.0 -m "Release 3.0.0"
```
@ -29,11 +30,11 @@ git push --tags
* [ ] Increment version and append `.dev0`, and add Unreleased to the changelog:
```bash
git checkout master
edit CHANGELOG.md pylast/version.py
edit CHANGELOG.md src/pylast/version.py
```
* [ ] Commit and push:
```bash
git add CHANGELOG.md pylast/version.py
git add CHANGELOG.md src/pylast/version.py
git commit -m "Start new release cycle"
git push
```