forked from osmocom/wireshark
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
parent
f4238cd266
commit
17b721e451
|
@ -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}")
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
wireshark (2.9.0) unstable; urgency=low
|
||||
wireshark (2.9.1) unstable; urgency=low
|
||||
|
||||
* Self-made package
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Common attributes
|
||||
|
||||
:wireshark-version: 2.9.0
|
||||
:wireshark-version: 2.9.1
|
||||
|
||||
// We're migrating from AsciiDoc.
|
||||
:compat-mode:
|
||||
|
|
|
@ -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:
|
||||
|
||||
|
|
|
@ -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 = "";
|
||||
|
|
Loading…
Reference in New Issue