diff --git a/README.md b/README.md index 735052b37d..bdaa243fc5 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![License](https://img.shields.io/badge/license-GPLv2-blue.svg)](https://raw.githubusercontent.com/smicallef/spiderfoot/master/LICENSE) [![Python Version](https://img.shields.io/badge/python-3.7+-green)](https://www.python.org) -[![Stable Release](https://img.shields.io/badge/version-3.4-blue.svg)](https://github.com/smicallef/spiderfoot/releases/tag/v3.4) +[![Stable Release](https://img.shields.io/badge/version-3.5-blue.svg)](https://github.com/smicallef/spiderfoot/releases/tag/v3.5) [![CI status](https://github.com/smicallef/spiderfoot/workflows/Tests/badge.svg)](https://github.com/smicallef/spiderfoot/actions?query=workflow%3A"Tests") [![Last Commit](https://img.shields.io/github/last-commit/smicallef/spiderfoot)](https://github.com/smicallef/spiderfoot/commits/master) [![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/github/smicallef/spiderfoot)](https://libraries.io/github/smicallef/spiderfoot) @@ -95,9 +95,9 @@ To install and run SpiderFoot, you need at least Python 3.7 and a number of Pyth #### Stable build (packaged release): ``` -$ wget https://github.com/smicallef/spiderfoot/archive/v3.4.tar.gz -$ tar zxvf v3.4.tar.gz -$ cd spiderfoot-3.4 +$ wget https://github.com/smicallef/spiderfoot/archive/v3.5.tar.gz +$ tar zxvf v3.5.tar.gz +$ cd spiderfoot-3.5 $ pip3 install -r requirements.txt $ python3 ./sf.py -l 127.0.0.1:5001 ``` diff --git a/VERSION b/VERSION index 4d9b9d9743..b246d5c178 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -SpiderFoot 3.4 +SpiderFoot 3.5 diff --git a/sfcli.py b/sfcli.py index cfe65c6069..bd75393d28 100755 --- a/sfcli.py +++ b/sfcli.py @@ -53,7 +53,7 @@ class bcolors: class SpiderFootCli(cmd.Cmd): - version = "3.4.0" + version = "3.5.0" pipecmd = None output = None modules = [] diff --git a/spiderfoot/__version__.py b/spiderfoot/__version__.py index dc6c370251..6c44de1513 100644 --- a/spiderfoot/__version__.py +++ b/spiderfoot/__version__.py @@ -1,3 +1,3 @@ -VERSION = (3, 4, 0) +VERSION = (3, 5, 0) __version__ = '.'.join(map(str, VERSION))