Skip to content

Commit

Permalink
bump version to 3.4rc1 (release candidate)
Browse files Browse the repository at this point in the history
  • Loading branch information
latk committed Feb 8, 2018
1 parent 7e70a35 commit cffdbf4
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion doc/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gcovr User Guide
:start-after: .. begin abstract
:end-before: .. end abstract

This documentation describes Gcovr 3.3.
This documentation describes Gcovr 3.4.

.. section-numbering::

Expand Down
Binary file modified doc/screenshot-html-details.example.cpp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/screenshot-html.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 2 additions & 7 deletions scripts/gcovr
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ uncovered_color = "LightPink"
takenBranch_color = "Green"
notTakenBranch_color = "Red"

__version__ = "3.3"
src_revision = "$Revision$"
__version__ = "3.4rc1"

output_re = re.compile("[Cc]reating [`'](.*)'$")
source_re = re.compile("[Cc]annot open (source|graph) file")
Expand All @@ -85,11 +84,7 @@ cpp_style_comment_pattern = re.compile('//.*?$')


def version_str():
ans = __version__
m = re.match('\$Revision:\s*(\S+)\s*\$', src_revision)
if m:
ans = ans + " (r%s)" % (m.group(1))
return ans
return __version__


#
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def read(*rnames):
scripts = glob.glob("scripts/*")

setup(name='gcovr',
version='3.3',
version='3.4rc1',
maintainer='William Hart',
maintainer_email='[email protected]',
url='http://gcovr.com',
Expand Down

0 comments on commit cffdbf4

Please sign in to comment.