aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy
diff options
context:
space:
mode:
authoraskeing <askeing@gmail.com>2016-04-17 04:33:24 +0900
committeraskeing <askeing@gmail.com>2016-04-17 04:33:24 +0900
commiteb9a7e5c110f0a494859c3285f234680aa5ea1ca (patch)
tree40ba6858a707d740be6ee134ba81082529fc0808 /python/tidy
parent27bac667b21a89a717408b36b14c78d0bdd19a9c (diff)
downloadservo-eb9a7e5c110f0a494859c3285f234680aa5ea1ca.tar.gz
servo-eb9a7e5c110f0a494859c3285f234680aa5ea1ca.zip
bump the minor version of servo_tidy
- and add clean folder into Makefile
Diffstat (limited to 'python/tidy')
-rw-r--r--python/tidy/HISTORY.rst4
-rw-r--r--python/tidy/Makefile3
-rw-r--r--python/tidy/setup.py2
3 files changed, 6 insertions, 3 deletions
diff --git a/python/tidy/HISTORY.rst b/python/tidy/HISTORY.rst
index 13cc05fe665..1e02962afa0 100644
--- a/python/tidy/HISTORY.rst
+++ b/python/tidy/HISTORY.rst
@@ -1,6 +1,10 @@
Release History
---------------
+0.0.2 (2016-04-17)
+++++++++++++++++++
+- Cleanup Tidy to work on external deps
+
0.0.1 (2016-04-12)
++++++++++++++++++
- Package Tidy
diff --git a/python/tidy/Makefile b/python/tidy/Makefile
index 33f3b499fc8..9637aa10d98 100644
--- a/python/tidy/Makefile
+++ b/python/tidy/Makefile
@@ -22,5 +22,4 @@ test: dev-env
.PHONY: clean
clean:
find . -name "*.pyc" -type f -delete
-
-
+ rm -rf $(VENV)
diff --git a/python/tidy/setup.py b/python/tidy/setup.py
index 5b280fb21a4..86aae654b3c 100644
--- a/python/tidy/setup.py
+++ b/python/tidy/setup.py
@@ -11,7 +11,7 @@ import os
from setuptools import setup, find_packages
-VERSION = '0.0.1'
+VERSION = '0.0.2'
install_requires = [
"flake8==2.4.1",