From 18b7774661d204d096cc6f5bab240a34ecd87472 Mon Sep 17 00:00:00 2001 From: Chronic Coder Date: Thu, 2 May 2024 22:33:35 -0700 Subject: [PATCH] Update version to v0.0.7 --- README.md | 2 +- setup.py | 2 +- ssm/__version__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4eaa5ef..be287f8 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ SVG spritesheet maker [![CI](https://github.com/obeezzy/ssm/actions/workflows/main.yml/badge.svg)](https://github.com/obeezzy/ssm/actions/workflows/main.yml) -[![Deployment to PyPI](https://github.com/obeezzy/ssm/actions/workflows/deploy.yml/badge.svg?branch=v0.0.6)](https://github.com/obeezzy/ssm/actions/workflows/deploy.yml) +[![Deployment to PyPI](https://github.com/obeezzy/ssm/actions/workflows/deploy.yml/badge.svg?branch=v0.0.7)](https://github.com/obeezzy/ssm/actions/workflows/deploy.yml) __ssm__ is a command-line tool for creating and managing SVG spritesheets. It has 5 main functions: diff --git a/setup.py b/setup.py index e5f8d2e..022d7c1 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ # This call to setup() does all the work setup( name="ssm-svg", - version="0.0.6", + version="0.0.7", description="SVG spritesheet maker", long_description=README, long_description_content_type="text/markdown", diff --git a/ssm/__version__.py b/ssm/__version__.py index 57b787b..d155faa 100644 --- a/ssm/__version__.py +++ b/ssm/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 0, 6) +VERSION = (0, 0, 7) __version__ = '.'.join(map(str, VERSION))