Skip to content

Commit

Permalink
Merge pull request #173 from jsocol/release/v4
Browse files Browse the repository at this point in the history
Bump version to v4.0.0
  • Loading branch information
jsocol authored Nov 5, 2022
2 parents eda702f + acc6084 commit aed9504
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Statsd Changelog

## Unreleased
## v4.0

### Added

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '3.3'
version = '4.0'
# The full version, including alpha/beta/rc tags.
release = '3.3.0'
release = '4.0.0'

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

[project]
name = "statsd"
version = "3.3.0"
authors = [{name = "James Socol", email = "james@mozilla.com"}]
version = "4.0.0"
authors = [{name = "James Socol", email = "me@jamessocol.com"}]
license = {text = "MIT"}
description = "A simple statsd client."
readme = "README.rst"
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 = (3, 2, 1)
VERSION = (4, 0, 0)
__version__ = '.'.join(map(str, VERSION))
__all__ = ['StatsClient', 'TCPStatsClient', 'UnixSocketStatsClient']

0 comments on commit aed9504

Please sign in to comment.