diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aa5941..432f707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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/) +## v0.4.0 - 2025-02-07 + +This set of plugins was merged into the main [Statick] repository and Python package. +All future development will happen in that repository. + +### Updated + +- The Statick dependency was pinned to lower than version 0.12. + - This will ensure these plugins are not installed in the same space as the main `statick` package. + Having both packages installed would cause conflicts between plugins. + ## v0.3.0 - 2025-01-20 ### Added diff --git a/README.md b/README.md index 7c29737..a7fbe81 100644 --- a/README.md +++ b/README.md @@ -17,14 +17,25 @@ Custom exceptions can be applied the same way they are with [Statick exceptions] ## Table of Contents -* [Installation](#installation) -* [Usage](#usage) -* [Existing Plugins](#existing-plugins) - * [Discovery Plugins](#discovery-plugins) - * [Tool Plugins](#tool-plugins) -* [Contributing](#contributing) - * [Mypy](#mypy) - * [Formatting](#formatting) +- [Statick Web Plugins](#statick-web-plugins) + - [Table of Contents](#table-of-contents) + - [Deprecated](#deprecated) + - [Installation](#installation) + - [Usage](#usage) + - [Pip Install](#pip-install) + - [Pip Install and Custom Configuration](#pip-install-and-custom-configuration) + - [Source Install and Custom Configuration](#source-install-and-custom-configuration) + - [Existing Plugins](#existing-plugins) + - [Discovery Plugins](#discovery-plugins) + - [Tool Plugins](#tool-plugins) + - [Contributing](#contributing) + - [Mypy](#mypy) + - [Formatting](#formatting) + +## Deprecated + +This set of plugins was merged into the main [Statick] repository and Python package. +All future development will happen in that repository. ## Installation diff --git a/pyproject.toml b/pyproject.toml index 9ad5ec5..0222365 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "statick-web" authors = [{name = "NIWC Pacific"}] description="Statick analysis plugins for Web (css, html, js) files." -version = "0.3.0" +version = "0.4.0" readme = "README.md" requires-python = ">=3.9" license = {text = "CC0-1.0"} @@ -25,7 +25,7 @@ classifiers = [ dependencies = [ "importlib_metadata", - "statick", + "statick<0.12", ] [tool.setuptools.package-data]