From a36ca11964dfeaa92d4e7be8951406fe7789a3f6 Mon Sep 17 00:00:00 2001 From: Florian Scherf Date: Mon, 22 Jul 2024 21:02:31 +0200 Subject: [PATCH] release v0.1.4 Signed-off-by: Florian Scherf --- milan/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/milan/__init__.py b/milan/__init__.py index 5604fd3..b00fce3 100644 --- a/milan/__init__.py +++ b/milan/__init__.py @@ -6,7 +6,7 @@ from milan.webkit import Webkit # NOQA from milan.errors import * # NOQA -VERSION = (0, 1, 3) +VERSION = (0, 1, 4) VERSION_STRING = '.'.join(str(i) for i in VERSION) BROWSER = { diff --git a/pyproject.toml b/pyproject.toml index 4d95ec5..d5c9a90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] -version = "0.1.3" +version = "0.1.4" name = "milan" description = "Browser testing and capturing tool"