From b2b8bcbaec057881c8776275fea47bdc712adc51 Mon Sep 17 00:00:00 2001 From: Beraldo Leal Date: Fri, 12 Jul 2019 14:13:03 -0300 Subject: [PATCH] updated changelog --- CHANGELOG.rst | 6 ++++++ Makefile | 14 ++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Makefile diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 20ff244..264d87e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,12 @@ This is a log of changes made to the *kytos-utils* project. UNRELEASED - Under development ****************************** +[2019.1] - "fafa" stable - 2019-07-12 +************************************* + + - This is the stable version based on the last beta pre-releases. + No changes since the last rc1. + [2019.1rc1] - "fafa" rc1 - 2019-07-05 ************************************** Changed diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f8a7f75 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +prepare: + pip3.7 install --upgrade pip setuptools wheel twine + +clean: + rm -rf build/ dist/ *.egg-info/ + +build: clean + python3.7 setup.py sdist bdist_wheel + +testupload: build + twine upload -r pypitest dist/* + +upload: build + twine upload dist/*