From 8f88eccdb5099aaf0a6978fedcc1e32f5efc9c9b Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Fri, 24 Oct 2025 06:48:32 -0700 Subject: [PATCH 1/2] Upgraded the version --- .github/workflows/python.yaml | 6 +++--- CHANGELOG.md | 5 +++++ pyproject.toml | 4 +++- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index 0fc344f..5154aa7 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -13,11 +13,11 @@ jobs: strategy: fail-fast: false matrix: - python_version: ["3.8", "3.9", "3.10", "3.11"] + python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Set up Python 3 - uses: actions/setup-python@v3 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python_version }} - name: Install dependencies diff --git a/CHANGELOG.md b/CHANGELOG.md index 324de81..3a6da9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.1.6] - October 23, 2025 + +- Upgraded axe-core JS version to v4.11.0. You may seen the number of violations change as a result, as new axe-core versions sometimes add new rules and update existing ones. + + ## [0.1.5] - June 21, 2025 - Upgraded axe-core JS version to v4.10.3. You may seen the number of violations change as a result, as they added new rules and updated existing ones. diff --git a/pyproject.toml b/pyproject.toml index 58235cd..7367959 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "axe-playwright-python" description = "Automated web accessibility testing using axe-core engine and Playwright." -version = "0.1.5" +version = "0.1.6" authors = [{name = "Pamela Fox", "email" = "pamela.fox@gmail.com"}] requires-python = ">=3.8" readme = "README.md" @@ -17,6 +17,8 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Adaptive Technologies", "Topic :: Software Development", "Topic :: Software Development :: Quality Assurance", From 4da0910940c223bd1b0298a65a0d535ebb91807e Mon Sep 17 00:00:00 2001 From: Pamela Fox Date: Fri, 24 Oct 2025 07:01:29 -0700 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a6da9b..e44f9fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,9 @@ All notable changes to this project will be documented in this file. ## [0.1.6] - October 23, 2025 -- Upgraded axe-core JS version to v4.11.0. You may seen the number of violations change as a result, as new axe-core versions sometimes add new rules and update existing ones. +- Upgraded axe-core JS version to v4.11.0. You may see the number of violations change as a result, as new axe-core versions sometimes add new rules and update existing ones. ## [0.1.5] - June 21, 2025 -- Upgraded axe-core JS version to v4.10.3. You may seen the number of violations change as a result, as they added new rules and updated existing ones. +- Upgraded axe-core JS version to v4.10.3. You may see the number of violations change as a result, as they added new rules and updated existing ones.