diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ad0c12..4d62ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.9.0] - 2025-12-22 + +Just a small update to update imports, support the latest python version, and fix configs. + +### Added + +- Support for Python 3.14 (and retroactively 3.13). + +### Removed + +- Dropped support for Python 3.8. +- DeepSource config and badge. + +### Fixed + +- Fixed pre-commit config, now using all official repos while still utilizing poetry dependencies. +- Fixed the GitHub workflows for CI/CD, now using the latest action versions. + ## [1.8.0] - 2023-12-22 ### Added diff --git a/pyproject.toml b/pyproject.toml index a18550d..1153fb3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pywidevine" -version = "1.8.0" +version = "1.9.0" description = "Widevine CDM (Content Decryption Module) implementation in Python." license = "GPL-3.0-only" authors = ["rlaphoenix "] diff --git a/pywidevine/__init__.py b/pywidevine/__init__.py index 659ea25..f2b9059 100644 --- a/pywidevine/__init__.py +++ b/pywidevine/__init__.py @@ -5,4 +5,4 @@ from .pssh import * from .remotecdm import * from .session import * -__version__ = "1.8.0" +__version__ = "1.9.0"