From dee31bab9c2e80023b2bd1197151c8f1b33cfdd7 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sun, 12 Nov 2023 15:04:22 -0800 Subject: [PATCH 1/2] __VERSION__ -> __version__ in script/release --- script/release | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/release b/script/release index c893a7d..1d530e5 100755 --- a/script/release +++ b/script/release @@ -33,7 +33,7 @@ fi # Set so that setup.py will create a public release style version number export OCTODNS_RELEASE=1 -VERSION="$(grep "^__VERSION__" "$ROOT/octodns_fastly/__init__.py" | sed -e "s/.* = '//" -e "s/'$//")" +VERSION="$(grep "^__version__" "$ROOT/octodns_fastly/__init__.py" | sed -e "s/.* = '//" -e "s/'$//")" git tag -s "v$VERSION" -m "Release $VERSION" git push origin "v$VERSION" From d40e779c4ba04c9ed2be073c774d796460311a0b Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Sun, 12 Nov 2023 15:26:38 -0800 Subject: [PATCH 2/2] fix author info --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7c90d6e..e7de0a5 100644 --- a/setup.py +++ b/setup.py @@ -23,8 +23,8 @@ def descriptions(): tests_require = ('pytest', 'pytest-cov', 'pytest-network') setup( - author='xxx', - author_email='yyy', + author='Ross McFarland', + author_email='rwmcfa1@gmail.com', description=description, extras_require={ 'dev': tests_require