From 4c4944883a2f9c3995dc80d798d98df12a25d36c Mon Sep 17 00:00:00 2001 From: Florian Scherf Date: Sat, 20 Jul 2024 22:31:16 +0200 Subject: [PATCH] release v0.1.1 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 6c09f97..8571f2f 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) +VERSION = (0, 1, 1) VERSION_STRING = '.'.join(str(i) for i in VERSION) BROWSER = { diff --git a/pyproject.toml b/pyproject.toml index b05c4b6..2996672 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] -version = "0.1" +version = "0.1.1" name = "milan" description = "Browser testing and capturing tool" readme = "README.md"