Skip to content

Commit 918b135

Browse files
committed
Prepare release v2.2.1
1 parent dd5c45b commit 918b135

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ __pycache__
77
*.pyc
88
build
99
dist
10-
memory-bank

CHANGELOG.md

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

8+
## [2.2.1] - 2025-04-26
9+
10+
### Added
11+
12+
- Include `py.typed` marker file for PEP 561 compatibility.
13+
814
## [2.2.0] - 2025-03-30
915

1016
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "url-normalize"
3-
version = "2.2.0"
3+
version = "2.2.1"
44
description = "URL normalization for Python"
55
authors = [{ name = "Nikolay Panov", email = "github@npanov.com" }]
66
license = { text = "MIT" }

url_normalize/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
from .url_normalize import url_normalize
99

1010
__license__ = "MIT"
11-
__version__ = "2.2.0"
11+
__version__ = "2.2.1"
1212

1313
__all__ = ["url_normalize"]

0 commit comments

Comments
 (0)