From 8c3b0c3f2a9ddb34034c7120d01a964676d72f17 Mon Sep 17 00:00:00 2001 From: Tibor Leupold Date: Sun, 11 Feb 2024 12:48:05 -0800 Subject: [PATCH 1/3] Update version for development --- laces/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laces/__init__.py b/laces/__init__.py index b56a51c..7d4ccbf 100644 --- a/laces/__init__.py +++ b/laces/__init__.py @@ -1,2 +1,2 @@ -VERSION = (0, 1, 1) +VERSION = (0, 1, 2, "a", 0) __version__ = ".".join(map(str, VERSION)) From 23d2f59916148d0b56a2b9cf4035b7fa2379ea44 Mon Sep 17 00:00:00 2001 From: Tibor Leupold Date: Sun, 11 Feb 2024 13:11:41 -0800 Subject: [PATCH 2/3] Update to use shield.io for license and pypi --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 29a8cfd..9c2749b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Laces -[![License: BSD-3-Clause](https://img.shields.io/badge/License-BSD--3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) -[![PyPI version](https://badge.fury.io/py/laces.svg)](https://badge.fury.io/py/laces) +[![License: BSD-3-Clause](https://img.shields.io/github/license/tbrlpld/laces)](https://github.com/tbrlpld/laces/blob/main/LICENSE) +[![PyPI version](https://img.shields.io/pypi/v/laces)](https://pypi.org/project/laces/) [![laces CI](https://github.com/tbrlpld/laces/actions/workflows/test.yml/badge.svg)](https://github.com/tbrlpld/laces/actions/workflows/test.yml) [![codecov](https://codecov.io/gh/tbrlpld/laces/graph/badge.svg?token=FMHEHNVPSX)](https://codecov.io/gh/tbrlpld/laces) From 00122e2f7d965270307405a2d710bbbd7ffdef8e Mon Sep 17 00:00:00 2001 From: Tibor Leupold Date: Sun, 11 Feb 2024 13:12:19 -0800 Subject: [PATCH 3/3] Add comment where to find classifiers --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 0c062be..0462b32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ description = "Django components that know how to render themselves." readme = "README.md" license = {file = "LICENSE"} classifiers = [ + # https://pypi.org/classifiers/ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License",