Skip to content

Commit 1325f31

Browse files
authored
Merge pull request #177 from jsocol/release/v4.0.1
Release v4.0.1
2 parents aed9504 + 4ed8d13 commit 1325f31

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

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

3+
## UNRELEASED
4+
5+
## v4.0.1
6+
7+
### Fixed
8+
9+
- Updated PyPI trove classifiers for current Python versions.
10+
311
## v4.0
412

513
### Added

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '4.0'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '4.0.0'
53+
release = '4.0.1'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "statsd"
7-
version = "4.0.0"
7+
version = "4.0.1"
88
authors = [{name = "James Socol", email = "[email protected]"}]
99
license = {text = "MIT"}
1010
description = "A simple statsd client."
@@ -16,13 +16,12 @@ classifiers = [
1616
"License :: OSI Approved :: MIT License",
1717
"Operating System :: OS Independent",
1818
"Programming Language :: Python",
19-
"Programming Language :: Python :: 2",
20-
"Programming Language :: Python :: 2.7",
2119
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.5",
23-
"Programming Language :: Python :: 3.6",
2420
"Programming Language :: Python :: 3.7",
2521
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.11",
2625
"Topic :: Software Development :: Libraries :: Python Modules",
2726
]
2827
urls = {Homepage = "https://github.com/jsocol/pystatsd"}

statsd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
from .client import UnixSocketStatsClient
44

55

6-
VERSION = (4, 0, 0)
6+
VERSION = (4, 0, 1)
77
__version__ = '.'.join(map(str, VERSION))
88
__all__ = ['StatsClient', 'TCPStatsClient', 'UnixSocketStatsClient']

0 commit comments

Comments
 (0)