diff --git a/docs/index.md b/docs/index.md index 597c26cc..7d8bb4f2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -171,8 +171,7 @@ done One downside to this approach is that you invoke gitlint once per commit vs. once per set of commits. This means you'll incur the gitlint startup time once per commit, making this approach rather slow if you want to lint a large set of commits. For reference, at the time of writing, linting gitlint's entire commit log - (~160 commits) this way took about 40 seconds on a 2015 Macbook Pro. Linting the entire commit log of git - itself (~45,500 commits) took 2hr and 50 mins. + (~160 commits) this way took about 12 seconds on a 2015 Macbook Pro. ## Merge commits ## diff --git a/gitlint/__init__.py b/gitlint/__init__.py index aa1ad0a2..777f190d 100644 --- a/gitlint/__init__.py +++ b/gitlint/__init__.py @@ -1 +1 @@ -__version__ = "0.8.0dev" +__version__ = "0.8.0" diff --git a/qa/requirements.txt b/qa/requirements.txt index 1288233b..a7a3baae 100644 --- a/qa/requirements.txt +++ b/qa/requirements.txt @@ -1 +1,4 @@ +unittest2==1.1.0 # support for python 2.6 sh==1.11 +pytest==3.0.4 +gitlint # no version as you want to test the currently installed version \ No newline at end of file