Update version number to 1.35

This commit is contained in:
Reijo Tomperi 2009-08-16 16:57:16 +03:00
parent 8e517c5f22
commit fb85ee5356
5 changed files with 2224 additions and 4 deletions

2212
Changelog

File diff suppressed because it is too large Load Diff

View File

@ -2,13 +2,21 @@
# A script for creating source archives from a GIT tag
#
# Archive files are created in user's home directory.
#
# Remember to update version number in:
# - src/main.cpp
# - src/cppcheck.cpp
# - win_installer/cppcheck.iss
# Tag to use
tag=1.34
tag=1.35
# Name of release
releasename=cppcheck-$tag
# wget http://josefsson.org/git2cl/git2cl
./git2cl > ChangeLog
git archive --format=tar --prefix=$releasename/ $tag | gzip > ~/$releasename.tar.gz
git archive --format=tar --prefix=$releasename/ $tag | bzip2 > ~/$releasename.tar.bz2
git archive --format=zip -9 --prefix=$releasename/ $tag > ~/$releasename.zip

View File

@ -80,7 +80,7 @@ std::string CppCheck::parseFromArgs(int argc, const char* const argv[])
for (int i = 1; i < argc; i++)
{
if (strcmp(argv[i], "--version") == 0)
return "Cppcheck 1.34\n";
return "Cppcheck 1.35\n";
// Flag used for various purposes during debugging
if (strcmp(argv[i], "--debug") == 0)

View File

@ -20,7 +20,7 @@
/**
*
* @mainpage Cppcheck
* @version 1.34
* @version 1.35
*
* @section overview_sec Overview
* Cppcheck is a simple tool for static analysis of C/C++ code.

View File

@ -19,7 +19,7 @@
#define MyAppName "cppcheck"
#define AppVersion "1.34"
#define AppVersion "1.35"
#define MyAppURL "http://cppcheck.wiki.sourceforge.net/"
#define MyAppExeName "cppcheck.exe"
#define QTGuiExe "gui.exe"