Skip to content

Commit

Permalink
Bumped VERSION to 0.4.0 and SOVERSION to 0.1.0 since they broke the i…
Browse files Browse the repository at this point in the history
…nterface compatibility
  • Loading branch information
insomniacslk committed Oct 4, 2016
1 parent 7d08b92 commit 7d06282
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ project (dublin-traceroute)

# TODO sync this with VERSION in include/dublintraceroute/common.h
set (dublin-traceroute_VERSION_MAJOR_0)
set (dublin-traceroute_VERSION_MINOR_3)
set (dublin-traceroute_VERSION_PATCH_3)
set (dublin-traceroute_VERSION_MINOR_4)
set (dublin-traceroute_VERSION_PATCH_0)

# ensure that /usr/local is used to find dependencies. This is especially
# necessary for brew on OSX and for libraries installed manually under
Expand All @@ -25,7 +25,7 @@ add_library(dublintraceroute SHARED
# Set the shared library version
set_target_properties(dublintraceroute
PROPERTIES
SOVERSION 0.0.1
SOVERSION 0.1.0
)

find_package(PkgConfig)
Expand Down
8 changes: 5 additions & 3 deletions documentation/readme/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ The usage is very simple, and explained in the help message:

```bash
$ ./dublin-traceroute --help
Dublin Traceroute
Dublin Traceroute v0.3.3
Written by Andrea Barberio - https://insomniac.slackware.it

Usage:
Expand All @@ -229,6 +229,7 @@ Usage:
[--npaths=num_paths]
[--min-ttl=min_ttl]
[--max-ttl=max_ttl]
[--delay=delay_in_ms]
[--broken-nat]
[--help]
[--version]
Expand All @@ -239,8 +240,9 @@ Options:
-s SRC_PORT --sport=SRC_PORT the source port to send packets from
-d DST_PORT --dport=DST_PORT the base destination port to send packets to
-n NPATHS --npaths=NPATHS the number of paths to probe
-t MIN_TTL --min-ttl=MIN_TTL the MINIMUM TTL to probe. Must be greater or equal than the minimum TTL
-T MAX_TTL --max-ttl=MAX_TTL the maximum TTL to probe
-t MIN_TTL --min-ttl=MIN_TTL the minimum TTL to probe
-T MAX_TTL --max-ttl=MAX_TTL the maximum TTL to probe. Must be greater or equal than the minimum TTL
-D DELAY --delay=DELAY the inter-packet delay
-b --broken-nat the network has a broken NAT configuration (e.g. no payload fixup). Try this if you see less hops than expected


Expand Down
2 changes: 1 addition & 1 deletion include/dublintraceroute/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#ifndef _COMMON_H
#define _COMMON_H

#define VERSION "0.3.3"
#define VERSION "0.4.0"

#include <map>

Expand Down
4 changes: 2 additions & 2 deletions src/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const struct option longopts[] = {

static void usage() {
std::cout <<
R"(Dublin Traceroute
Written by Andrea Barberio - https://insomniac.slackware.it
"Dublin Traceroute v" VERSION "\n"
R"(Written by Andrea Barberio - https://insomniac.slackware.it
Usage:
dublin-traceroute <target> [--sport=SRC_PORT]
Expand Down

0 comments on commit 7d06282

Please sign in to comment.