From 7c30d682f9252611a22a51c421254a9f2e120971 Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Wed, 6 Feb 2019 09:55:19 -0500 Subject: [PATCH 1/4] LICENSE: Update year range. --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 1391310..01587ab 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2016 AWeber Communications +Copyright (c) 2016-2019 AWeber Communications All rights reserved. Redistribution and use in source and binary forms, with or without modification, From cf7f54cc4138a03f2cb5bf0f27e467153ba91978 Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Wed, 6 Feb 2019 09:55:34 -0500 Subject: [PATCH 2/4] Metadata bumps for 4.0.0. --- docs/history.rst | 7 ++++--- sprockets/mixins/metrics/__init__.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/history.rst b/docs/history.rst index ea28b00..7b70680 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -3,8 +3,8 @@ Release History =============== -`Next`_ -------- +`4.0.0`_ (06-Feb-2019) +---------------------- - Add support for Tornado 5 - Remove support for Tornado < 5 - Remove support for Python < 3.7 @@ -88,7 +88,8 @@ Release History - Add :class:`sprockets.mixins.metrics.InfluxDBMixin` - Add :class:`sprockets.mixins.metrics.influxdb.InfluxDBConnection` -.. _Next: https://github.com/sprockets/sprockets.mixins.metrics/compare/3.1.1...master +.. _Next Release: https://github.com/sprockets/sprockets.mixins.metrics/compare/4.0.0...master +.. _4.0.0: https://github.com/sprockets/sprockets.mixins.metrics/compare/3.1.1...4.0.0 .. _3.1.1: https://github.com/sprockets/sprockets.mixins.metrics/compare/3.1.0...3.1.1 .. _3.1.0: https://github.com/sprockets/sprockets.mixins.metrics/compare/3.0.4...3.1.0 .. _3.0.4: https://github.com/sprockets/sprockets.mixins.metrics/compare/3.0.3...3.0.4 diff --git a/sprockets/mixins/metrics/__init__.py b/sprockets/mixins/metrics/__init__.py index e40eb48..1277b5a 100644 --- a/sprockets/mixins/metrics/__init__.py +++ b/sprockets/mixins/metrics/__init__.py @@ -1,3 +1,3 @@ -version_info = (3, 1, 1) +version_info = (4, 0, 0) __version__ = '.'.join(str(v) for v in version_info) __all__ = ['__version__', 'version_info'] From a3872bcfba9dfed1fc4a7af54f4a76b0deb7d13f Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Wed, 6 Feb 2019 09:56:34 -0500 Subject: [PATCH 3/4] setup.py: add the shebang line: this is EXECUTABLE! --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index b6ab2cf..ab2cfff 100755 --- a/setup.py +++ b/setup.py @@ -1,3 +1,6 @@ +#!/usr/bin/python +# + import pathlib import setuptools From 283551f2a4bfcddb1ee7b87088822b908e282653 Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Wed, 6 Feb 2019 09:57:51 -0500 Subject: [PATCH 4/4] setup.py: Fix again since we require setup.py. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ab2cfff..3e01f99 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 # import pathlib