Skip to content
This repository has been archived by the owner on Apr 18, 2018. It is now read-only.

Commit

Permalink
Release 0.3.3
Browse files Browse the repository at this point in the history
 BUG FIXES

 * Don't run merge detection on merged requests (rschlaikjer, #84, #91)
 * Fetch non-ff branches (rschlaikjer, #85, #90)

 IMPROVEMENTS

 * Manually rerun merge detection (rschlaikjer, #86, #92)

 PERFORMANCE TWEAKS

 * Separate git sha retrieval from git merge conflict detection.
   (rschlaikjer, #82, #83)
  • Loading branch information
ymilki committed Aug 18, 2014
1 parent 645dd1b commit 67aa4d6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
0.3.3 Not released

BUG FIXES

* Don't run merge detection on merged requests (rschlaikjer, #84, #91)
* Fetch non-ff branches (rschlaikjer, #85, #90)

IMPROVEMENTS

* Manually rerun merge detection (rschlaikjer, #86, #92)

PERFORMANCE TWEAKS

* Separate git sha retrieval from git merge conflict detection.
(rschlaikjer, #82, #83)

0.3.2 2014-08-15

PERFORMANCE TWEAKS
Expand Down
4 changes: 2 additions & 2 deletions pushmanager/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (0, 3, 2)
__version__ = '%d.%d.%d' % __version_info__
__version_info__ = (0, 3, 3, '-RC1')
__version__ = '%d.%d.%d%s' % __version_info__

0 comments on commit 67aa4d6

Please sign in to comment.