diff --git a/doc/scapy/conf.py b/doc/scapy/conf.py index 72c716a652bc7efde9e129de29fa8c451823ccae..74d161052dfc9a3158da91aa3dd5bde9ce949502 100644 --- a/doc/scapy/conf.py +++ b/doc/scapy/conf.py @@ -42,9 +42,9 @@ copyright = '2008, 2009 Philippe Biondi and the Scapy community' # other places throughout the built documents. # # The short X.Y version. -version = '2.3.0' +version = '2.3.1' # The full version, including alpha/beta/rc tags. -release = '2.3.0-dev' +release = '2.3.1' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/scapy/config.py b/scapy/config.py index 4eef72eebd2e46eed5dd8326c7cd74f5d33c0abe..816e8a18558d6da6904719977bf5a1ac4d4646b8 100644 --- a/scapy/config.py +++ b/scapy/config.py @@ -316,7 +316,7 @@ noenum : holds list of enum fields for which conversion to string should NOT AS_resolver: choose the AS resolver class to use extensions_paths: path or list of paths where extensions are to be looked for """ - version = "2.3.0-dev" + version = "2.3.1" session = "" interactive = False interactive_shell = "" diff --git a/setup.py b/setup.py index 5465b4b498191e341395723c34972391ddcfcb71..98fb90ba70db3af0e2be8e04a01ba692f4ffdc2f 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ if os.name == "nt": setup( name = 'scapy', - version = '2.3.0-dev', + version = '2.3.1', packages=['scapy','scapy/arch', 'scapy/arch/windows', 'scapy/layers','scapy/asn1','scapy/tools','scapy/modules', 'scapy/crypto', 'scapy/contrib'], scripts = SCRIPTS, data_files = [('share/man/man1', ["doc/scapy.1.gz"])],