Skip to content

Commit 1f2bb40

Browse files
authored
Merge pull request #49 from dmitriiweb/docs-and-changes
chore(release): bump version to 6.1.0
2 parents 9c7fc92 + 80f4cfb commit 1f2bb40

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 6.1.0
4+
5+
### Added
6+
- `AdvancedEmailExtractor` class that normalizes common email obfuscations (`[at]`, `(dot)`, etc.), decodes Cloudflare `data-cfemail` protected addresses, and filters junk/system emails for cleaner results
7+
- Documentation for `extract_emails.data_extractors.advanced_email_extractor` in docs
8+
9+
### Changed
10+
- URL normalization now treats www/apex variants (e.g., `example.com` and `www.example.com`) as same-site, preventing extraction failures when browsers follow redirects
11+
12+
### Fixed
13+
- Link filtering now correctly handles redirects from `example.com` to `www.example.com` (and vice versa)
14+
- Resolves issue #40 (email extraction improvements)
15+
316
## 6.0.2
417

518
### Added

extract_emails/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "6.0.2"
1+
__version__ = "6.1.0"
22
from .workers import DefaultWorker
33

44
__all__ = ("DefaultWorker",)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "extract-emails"
3-
version = "6.0.2"
3+
version = "6.1.0"
44
requires-python = ">=3.10,<3.15"
55
description = "Extract email addresses and linkedin profiles from given URL."
66
authors = [

0 commit comments

Comments
 (0)