From c8b1f46cef67a158fd598efc9fe61f12900119fa Mon Sep 17 00:00:00 2001 From: Stanislav Pankevich Date: Sun, 8 Dec 2019 22:28:32 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.3=20=E2=86=92=200.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- filecheck/FileCheck.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d2de08b..001ac01 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.3 +current_version = 0.0.4 commit = True tag = True diff --git a/filecheck/FileCheck.py b/filecheck/FileCheck.py index ab36d31..907656e 100755 --- a/filecheck/FileCheck.py +++ b/filecheck/FileCheck.py @@ -9,7 +9,7 @@ from difflib import SequenceMatcher from enum import Enum -__version__ = '0.0.3' +__version__ = '0.0.4' class MatchType(Enum): diff --git a/pyproject.toml b/pyproject.toml index 29e0412..100df14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "filecheck" -version = "0.0.3" +version = "0.0.4" description = "Python port of LLVM's FileCheck, flexible pattern matching file verifier" authors = ["Stanislav Pankevich "]