From f64cec7674089e53d04b6f2a6a78ac833800b5a4 Mon Sep 17 00:00:00 2001 From: Matthew Henderson Date: Thu, 5 Dec 2024 09:54:28 +0000 Subject: [PATCH 1/3] Ignore swp files. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 76d8fca..c26a256 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ **__pycache__ +**.swp From a215d37428450b27e3226736cc7e170ffb0e61d0 Mon Sep 17 00:00:00 2001 From: Matthew Henderson Date: Thu, 5 Dec 2024 09:54:39 +0000 Subject: [PATCH 2/3] Update NEWS.md. --- NEWS.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/NEWS.md b/NEWS.md index e55e9c9..7822746 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # vizing (development version) +# vizing (v0.2.1) + +* Constraint model of edge list-colouring of directed graphs using python-constraint. + # vizing (v0.2.0) * Starting again again. @@ -11,3 +15,4 @@ * Starting again. * Removed docs, tests. Leaving only modules behind. * Start using poetry. + From a99d753e798c83c0e7f5f98f7629070b2cc2d940 Mon Sep 17 00:00:00 2001 From: Matthew Henderson Date: Thu, 5 Dec 2024 09:55:25 +0000 Subject: [PATCH 3/3] Bump version number: v0.2.0.9000 -> v0.2.1. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f7c61d8..5d9cbb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vizing" -version = "0.2.0.9000" +version = "0.2.1" description = "Constraint-based list-colouring in Python." authors = ["Matthew Henderson "] readme = "README.md"