aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.nmake2
-rw-r--r--configure.in2
-rw-r--r--debian/changelog2
-rwxr-xr-xmake-version.pl8
4 files changed, 7 insertions, 7 deletions
diff --git a/config.nmake b/config.nmake
index b8a957f0d5..4080138cb9 100644
--- a/config.nmake
+++ b/config.nmake
@@ -16,7 +16,7 @@ WIRESHARK_TARGET_PLATFORM=win32
# It's highly recommended to leave MAJOR/MINOR/MICRO unchanged
VERSION_MAJOR=1
VERSION_MINOR=1
-VERSION_MICRO=4
+VERSION_MICRO=3
VERSION_BUILD=0
# It's recommended to change VERSION_EXTRA for your own custom builds
# e.g. "-SVN-12345"
diff --git a/configure.in b/configure.in
index 75ad236a73..e6e0b0c5da 100644
--- a/configure.in
+++ b/configure.in
@@ -12,7 +12,7 @@ dnl AC_CANONICAL_HOST
dnl AC_CANONICAL_BUILD
dnl AC_CANONICAL_TARGET
-AC_INIT(wireshark, 1.1.4)
+AC_INIT(wireshark, 1.1.3)
AM_INIT_AUTOMAKE([1.9 tar-ustar])
AM_DISABLE_STATIC
diff --git a/debian/changelog b/debian/changelog
index 07c5043d64..0148cc5b51 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-wireshark (1.1.4) unstable; urgency=low
+wireshark (1.1.3) unstable; urgency=low
* Self-made package
diff --git a/make-version.pl b/make-version.pl
index 03f5ebfa7d..3b17cbf977 100755
--- a/make-version.pl
+++ b/make-version.pl
@@ -71,12 +71,12 @@ my %version_pref = (
"format" => "SVN %Y%m%d%H%M%S",
# Normal development builds
- "pkg_enable" => 1,
- "pkg_format" => "-SVN-%#",
+ #"pkg_enable" => 1,
+ #"pkg_format" => "-SVN-%#",
# Development releases
- #"pkg_enable" => 0,
- #"pkg_format" => "",
+ "pkg_enable" => 0,
+ "pkg_format" => "",
);
my $srcdir = ".";