Skip to content

Commit

Permalink
Merge pull request #86 from peopledoc/0.21-release
Browse files Browse the repository at this point in the history
0.21 release
  • Loading branch information
zebuline committed Sep 20, 2018
2 parents a4e209a + c800a0f commit 543494b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG
@@ -1,7 +1,13 @@
Changelog
=========

0.21 (unreleased)
0.22 (unreleased)
-----------------

- Nothing changed yet.


0.21 (2018-09-20)
-----------------

- Migrate GitHub organization
Expand Down
18 changes: 17 additions & 1 deletion Makefile
Expand Up @@ -15,5 +15,21 @@ docs: bin/sphinx-build
bin/pip install sphinx
SPHINXBUILD=../bin/sphinx-build $(MAKE) -C docs html $^

#: clean - Basic cleanup, mostly temporary files.
clean:
rm -rf bin .tox include/ lib/ man/ django_mail_factory.egg-info/ build/ pip-selfcheck.json
find . -name '*.pyc' -delete
find . -name '*.pyo' -delete
find . -name __pycache__ -delete


#: distclean - Remove local builds, such as *.egg-info.
distclean: clean
rm -rf *.egg
rm -rf *.egg-info


#: maintainer-clean - Remove almost everything that can be re-generated.
maintainer-clean: distclean
rm -rf build/
rm -rf dist/
rm -rf .tox/
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.21.dev0
0.22.dev0

0 comments on commit 543494b

Please sign in to comment.