From 8ba216ff96a5d1cb90f9755889e2184d7af575bb Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Sun, 15 Oct 2023 12:08:49 +0200 Subject: [PATCH] Python package version 0.990.0 --- implementations/python/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/implementations/python/setup.py b/implementations/python/setup.py index 308008b..71e64cb 100644 --- a/implementations/python/setup.py +++ b/implementations/python/setup.py @@ -2,12 +2,12 @@ from setuptools import setup setup( name="preserves", - version="0.18.1", + version="0.990.0", author="Tony Garnock-Jones", author_email="tonyg@leastfixedpoint.com", license="Apache Software License", classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Topic :: Software Development :: Libraries :: Python Modules", "License :: OSI Approved :: Apache Software License", @@ -15,7 +15,7 @@ setup( ], packages=["preserves"], url="https://preserves.dev/", - description="Experimental data serialization format", + description="Data serialization format", long_description=open("README.md").read(), long_description_content_type="text/markdown", install_requires=[],