Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
27 changes: 19 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand All @@ -25,7 +25,7 @@ classifiers = [

dependencies = [
"importlib_metadata",
"statick",
"statick<0.12",
]

[tool.setuptools.package-data]
Expand Down