Skip to content

Commit 9857594

Browse files
Michael HallikMichael Hallik
authored andcommitted
chore(release): bump version to 1.0.1
1 parent 5e004ac commit 9857594

7 files changed

Lines changed: 10 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
All notable changes to the project will be documented in this file.
44

5-
## [Unreleased]
6-
75
## [1.0.0] - 2025-04-04
8-
### Added
96
- Implement Robot Framework test library for XML validation against XSD schemas.
107
- Add unit tests using pytest.
118
- Add integration tests using Robot Framework.
129
- Add user and technical documentation.
1310
- Add Makefile for standard development tasks.
1411
- Add GitHub Actions for CI/CD.
15-
- Use Poetry for dependency and release management.
12+
- Use Poetry for dependency and release management.
13+
14+
## [1.0.1] - 2025-06-09
15+
- Refactor: simplify the __init_() method of class XmlValidator

project_meta.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
Summary library source:
21
Total number of files: 4
32
Total number of methods: 27
43
Robot Framework user keywords: 7 (ca. 25%)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# General.
22
[tool.poetry]
33
name = "robotframework-xmlvalidator"
4-
version = "1.0.0"
4+
version = "1.0.1"
55
description = "A Robot Framework test library for validating XML files against XSD schemas"
66
authors = ["Michael Hallik <hallik.michael@gmail.com>"]
77
license = "Apache-2.0"

src/xmlvalidator/XmlValidator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ class XmlValidator:
402402
403403
"""
404404

405-
__version__ = '1.0.0'
405+
__version__ = '1.0.1'
406406
ROBOT_LIBRARY_DOC_FORMAT = 'reST'
407407
nr_instances = 0
408408

src/xmlvalidator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
__version__ = version("robotframework-xmlvalidator")
5656
except PackageNotFoundError:
5757
# Fall back when package not installed (default version for development).
58-
__version__ = "0.0.1"
58+
__version__ = "1.0.1"
5959
import warnings
6060
warnings.warn("Package metadata not found, using fallback version.")

src/xmlvalidator/xml_validator_results.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class ValidatorResultRecorder:
7575
and export validation results.
7676
"""
7777

78-
__version__ = '1.0.0'
78+
__version__ = '1.0.1'
7979

8080
errors_by_file: List[Dict[str, Any]] = field(default_factory=list)
8181
validation_summary: Dict[str, List[str]] = field(
@@ -364,7 +364,7 @@ class ValidatorResult: # pylint: disable=R0903:too-few-public-methods
364364
Error information if the operation failed.
365365
"""
366366

367-
__version__ = '0.0.1'
367+
__version__ = '1.0.1'
368368

369369
def __init__(
370370
self,

src/xmlvalidator/xml_validator_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class ValidatorUtils:
6767
All methods are static and the class maintains no internal state.
6868
"""
6969

70-
__version__ = '1.0.0'
70+
__version__ = '1.0.1'
7171

7272
@staticmethod
7373
def _resolve_path(path: str | Path) -> Path:

0 commit comments

Comments
 (0)