Skip to content

Commit aed9504

Browse files
authored
Merge pull request #173 from jsocol/release/v4
Bump version to v4.0.0
2 parents eda702f + acc6084 commit aed9504

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Statsd Changelog
22

3-
## Unreleased
3+
## v4.0
44

55
### Added
66

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '3.3'
51+
version = '4.0'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '3.3.0'
53+
release = '4.0.0'
5454

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

pyproject.toml

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

55
[project]
66
name = "statsd"
7-
version = "3.3.0"
8-
authors = [{name = "James Socol", email = "james@mozilla.com"}]
7+
version = "4.0.0"
8+
authors = [{name = "James Socol", email = "me@jamessocol.com"}]
99
license = {text = "MIT"}
1010
description = "A simple statsd client."
1111
readme = "README.rst"

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 = (3, 2, 1)
6+
VERSION = (4, 0, 0)
77
__version__ = '.'.join(map(str, VERSION))
88
__all__ = ['StatsClient', 'TCPStatsClient', 'UnixSocketStatsClient']

0 commit comments

Comments
 (0)