From da2bf2f876b306f96f0db0204bd801221f5791b1 Mon Sep 17 00:00:00 2001 From: IluaAir Date: Wed, 15 Jul 2026 00:47:56 +0300 Subject: [PATCH] Update version to 0.1.1 and add coverage file to .gitignore - Incremented the project version in `pyproject.toml` from 0.1.0 to 0.1.1. - Added `.coverage` to `.gitignore` to prevent tracking of coverage reports. --- .gitignore | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 517cdfa..97443eb 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ dist/ wheels/ *.egg-info main.py +.coverage # Virtual environments .venv .python-version diff --git a/pyproject.toml b/pyproject.toml index e1a6eb2..c497e2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "oxipy" -version = "0.1.0" +version = "0.1.1" description = "Python client for Oxidized API with TTP-based config parsing" readme = "README.md" license = "Apache-2.0"