Skip to content

Commit 9bc09a2

Browse files
committed
Version incrementation.
1 parent 4f1d5d5 commit 9bc09a2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:bullseye-slim
22

33
LABEL maintainer="Franck FERMAN <[email protected]>" \
44
description="MetaDetective: A Python 3 tool designed for advanced metadata analysis pivotal in OSINT and pentesting." \
5-
metadetective_version="1.0.4" \
5+
metadetective_version="1.0.5" \
66
docker_image_version="1.0.0"
77

88
RUN apt-get update && apt-get install -y \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "MetaDetective"
7-
version = "1.0.4"
7+
version = "1.0.5"
88
description = "Unleash Metadata Intelligence with MetaDetective. Your Assistant Beyond Metagoofil."
99
authors = [{ name = "Franck Ferman", email = "[email protected]" }]
1010
license = { file = "LICENSE" }

src/MetaDetective/MetaDetective.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Created By : Franck FERMAN @franckferman
66
Created Date: 27/08/2023
7-
Version : 1.0.4 (19/10/2023)
7+
Version : 1.0.5 (19/10/2023)
88
"""
99

1010
import argparse
@@ -192,7 +192,7 @@ def get_address_from_coords(lat: str, lon: str) -> str:
192192
"""
193193
try:
194194
conn = http.client.HTTPSConnection("nominatim.openstreetmap.org")
195-
headers = {'User-Agent': 'MetaDetective/1.0.4'}
195+
headers = {'User-Agent': 'MetaDetective/1.0.5'}
196196
conn.request("GET", f"/reverse?format=jsonv2&lat={lat}&lon={lon}", headers=headers)
197197

198198
res = conn.getresponse()

0 commit comments

Comments
 (0)