Skip to content

Commit

Permalink
Merge pull request #177 from jsocol/release/v4.0.1
Browse files Browse the repository at this point in the history
Release v4.0.1
  • Loading branch information
jsocol authored Nov 6, 2022
2 parents aed9504 + 4ed8d13 commit 1325f31
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Statsd Changelog

## UNRELEASED

## v4.0.1

### Fixed

- Updated PyPI trove classifiers for current Python versions.

## v4.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '4.0.0'
release = '4.0.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "statsd"
version = "4.0.0"
version = "4.0.1"
authors = [{name = "James Socol", email = "[email protected]"}]
license = {text = "MIT"}
description = "A simple statsd client."
Expand All @@ -16,13 +16,12 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = {Homepage = "https://github.com/jsocol/pystatsd"}
Expand Down
2 changes: 1 addition & 1 deletion statsd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
from .client import UnixSocketStatsClient


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

0 comments on commit 1325f31

Please sign in to comment.