From ee17d77f3c03404569fa7b137a0a5d03b2c60a1c Mon Sep 17 00:00:00 2001 From: "D. MacCarthy" Date: Sat, 18 May 2019 06:40:35 -0600 Subject: [PATCH] Release 2.1.0 --- sc8pr/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sc8pr/__init__.py b/sc8pr/__init__.py index 96191c2..24c8b75 100644 --- a/sc8pr/__init__.py +++ b/sc8pr/__init__.py @@ -15,7 +15,7 @@ # You should have received a copy of the GNU General Public License # along with "sc8pr". If not, see . -version = 2, 1, "dev" +version = 2, 1, 0 import sys, os, struct, zlib from math import hypot diff --git a/setup.py b/setup.py index a7b59ce..a30ff40 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = 2, 1, "dev" +version = 2, 1, 0 ver = "{}.{}.{}".format(*version) archive = "master" if version[-1] == "dev" else "v" + ver with open("README.txt", encoding="utf8") as f: readme = f.read() @@ -32,7 +32,7 @@ # Additional data keywords = "graphics animation sprite gui robotics pygame educational", classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Education", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",