2.9.0 → 2.9.1.

Change-Id: I5c1a26f234289edeb9e29f5b8a8bdd220bd49ecf
Reviewed-on: https://code.wireshark.org/review/31028
Reviewed-by: Gerald Combs <gerald@wireshark.org>
thomas/dect
Gerald Combs 2018-12-12 16:39:20 -08:00
parent f4238cd266
commit 17b721e451
5 changed files with 13 additions and 8 deletions

View File

@ -19,7 +19,7 @@ project(Wireshark C CXX)
set(GIT_REVISION 0)
set(PROJECT_MAJOR_VERSION 2)
set(PROJECT_MINOR_VERSION 9)
set(PROJECT_PATCH_VERSION 0)
set(PROJECT_PATCH_VERSION 1)
set(PROJECT_BUILD_VERSION ${GIT_REVISION})
set(PROJECT_VERSION_EXTENSION "")
set(PROJECT_RELEASE_VERSION "${PROJECT_MAJOR_VERSION}.${PROJECT_MINOR_VERSION}")

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
wireshark (2.9.0) unstable; urgency=low
wireshark (2.9.1) unstable; urgency=low
* Self-made package

View File

@ -1,6 +1,6 @@
// Common attributes
:wireshark-version: 2.9.0
:wireshark-version: 2.9.1
// We're migrating from AsciiDoc.
:compat-mode:

View File

@ -36,6 +36,11 @@ Dumpcap might not quit if Wireshark or TShark crashes.
=== New and Updated Features
The following features are new (or have been significantly updated)
since version 2.9.0:
* Nothing yet.
The following features are new (or have been significantly updated)
since version 2.6.0:

View File

@ -73,7 +73,7 @@ my $set_release = 0;
my %version_pref = (
"version_major" => 2,
"version_minor" => 9,
"version_micro" => 0,
"version_micro" => 1,
"version_build" => 0,
"enable" => 1,
@ -84,12 +84,12 @@ my %version_pref = (
"format" => "git %Y%m%d%H%M%S",
# Normal development builds
#"pkg_enable" => 1,
#"pkg_format" => "-%#",
"pkg_enable" => 1,
"pkg_format" => "-%#",
# Development releases
"pkg_enable" => 0,
"pkg_format" => "",
#"pkg_enable" => 0,
#"pkg_format" => "",
);
my $srcdir = ".";
my $info_cmd = "";