From 438e5a5d02e0a82f9984a24d4630f7fd29a27a39 Mon Sep 17 00:00:00 2001 From: Florian Scherf Date: Mon, 22 Jul 2024 20:39:52 +0200 Subject: [PATCH] release v0.1.3 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 ecfcc46..5604fd3 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, 2) +VERSION = (0, 1, 3) VERSION_STRING = '.'.join(str(i) for i in VERSION) BROWSER = { diff --git a/pyproject.toml b/pyproject.toml index 1ee7b8f..c525e3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] -version = "0.1.2" +version = "0.1.3" name = "milan" description = "Browser testing and capturing tool"