Skip to content

Commit 790f260

Browse files
committed
Update version reference and changelog for new minor release (v0.11.7)
1 parent 9f3c44a commit 790f260

File tree

5 files changed

+26
-11
lines changed

5 files changed

+26
-11
lines changed

CHANGELOG

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,24 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [0.11.7] - 2022-09-18
88
### Added
9-
- Test cases for plugins creation and running
9+
- DuckDuckGo plugin
10+
11+
### Changed
12+
- `--debugging` CLI parameter is now `--debug`
13+
14+
### Fixed
15+
- False negatives due to whitespaces in subdomain extracted text (e.g. "\n some.subdomain.com \n")
16+
- Subdomain selectors for Yahoo, Ask, Baidu and StartPage
17+
- WebCrawler query parameters
18+
- Baidu requests delay to avoid anti-bot checks
19+
20+
### Removed
21+
- WebCrawler plugin because of `403: Forbidden` HTTP error
22+
- StartPage and Exaled plugin because of CAPTCHA
23+
- Teoma plugin since it now redirects to Ask
24+
1025

1126
## [0.9.2] - 2019-08-01
1227
### Added

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM python:3.7.4-alpine3.10
22

33
RUN apk --no-cache add libxml2 libxml2-dev libxslt-dev gcc musl-dev wget ca-certificates
44

5-
ARG YASS_VERSION="0.9.2"
5+
ARG YASS_VERSION="0.11.7"
66

77
WORKDIR /yass
88
RUN wget "https://github.com/mrnfrancesco/yass/archive/v${YASS_VERSION}.zip" -O yass.zip && \

README

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ YASS - Yet Another Subdomainer Software
1010
:alt: Code Climate
1111
.. image:: https://img.shields.io/badge/python-3.7-blue.svg
1212
:target: https://www.python.org/downloads/release/python-374/
13-
.. image:: https://img.shields.io/badge/release-v0.9.2-green.svg
14-
:target: https://github.com/mrnfrancesco/yass/releases/tag/v0.9.2
13+
.. image:: https://img.shields.io/badge/release-v0.11.7-green.svg
14+
:target: https://github.com/mrnfrancesco/yass/releases/tag/v0.11.7
1515

1616
YASS is a plugin-powered search engine based subdomainer.
1717
Its goal is to give you a tool to query whatever search engine you like and parse HTML response writing *less than 10 lines of code*.
@@ -48,7 +48,7 @@ Example output
4848

4949
________________________________________________
5050

51-
YASS - Yet Another Subdomainer Software (v0.9.2)
51+
YASS - Yet Another Subdomainer Software (v0.11.7)
5252
by Francesco Marano (@mrnfrancesco)
5353
________________________________________________
5454

@@ -146,4 +146,4 @@ Or you can use Docker:
146146
$ docker run --rm -ti mrnfrancesco/yass:latest /bin/sh
147147

148148
/yass # yass --version
149-
YASS v0.9.2
149+
YASS v0.11.7

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://travis-ci.org/mrnfrancesco/yass.svg?branch=master)](https://travis-ci.org/mrnfrancesco/yass)
44
[![Code Climate](https://codeclimate.com/github/mrnfrancesco/yass/badges/gpa.svg)](https://codeclimate.com/github/mrnfrancesco/yass)
55
[![Python 3.7](https://img.shields.io/badge/python-3.7-blue.svg)](https://www.python.org/downloads/release/python-374/)
6-
[![Release](https://img.shields.io/badge/release-v0.9.2-green.svg)](https://github.com/mrnfrancesco/yass/releases/tag/v0.9.2)
6+
[![Release](https://img.shields.io/badge/release-v0.11.7-green.svg)](https://github.com/mrnfrancesco/yass/releases/tag/v0.11.7)
77

88
YASS is a plugin-powered search engine based subdomainer.
99
Its goal is to give you a tool to query whatever search engine you like and parse HTML response writing *less than 10 lines of code*.
@@ -40,7 +40,7 @@ $ yass microsoft.com
4040

4141
________________________________________________
4242

43-
YASS - Yet Another Subdomainer Software (v0.9.2)
43+
YASS - Yet Another Subdomainer Software (v0.11.7)
4444
by Francesco Marano (@mrnfrancesco)
4545
________________________________________________
4646

@@ -141,5 +141,5 @@ $ docker build -t mrnfrancesco/yass:latest .
141141
$ docker run --rm -ti mrnfrancesco/yass:latest /bin/sh
142142

143143
/yass # yass --version
144-
YASS v0.9.2
144+
YASS v0.11.7
145145
```

yass/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__lname__ = "yass"
22
__uname__ = "YASS"
33
__acronym__ = "Yet Another Subdomainer Software"
4-
__version__ = "0.8.0"
4+
__version__ = "0.11.7"
55
__author__ = "Francesco Marano (@mrnfrancesco)"
66
__author_email__ = "francesco.mrn24@gmail.com"
77
__source_url__ = "https://github.com/mrnfrancesco/yass"

0 commit comments

Comments
 (0)