Skip to content

Commit

Permalink
Version 3.4 -> 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
smicallef committed Nov 10, 2021
1 parent 122c898 commit d39aad6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SpiderFoot 3.4
SpiderFoot 3.5
2 changes: 1 addition & 1 deletion sfcli.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class bcolors:


class SpiderFootCli(cmd.Cmd):
version = "3.4.0"
version = "3.5.0"
pipecmd = None
output = None
modules = []
Expand Down
2 changes: 1 addition & 1 deletion spiderfoot/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (3, 4, 0)
VERSION = (3, 5, 0)

__version__ = '.'.join(map(str, VERSION))

0 comments on commit d39aad6

Please sign in to comment.