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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Custom exceptions can be applied the same way they are with [Statick exceptions]

- [Statick Tooling Plugins](#statick-tooling-plugins)
- [Table of Contents](#table-of-contents)
- [Deprecated](#deprecated)
- [Installation](#installation)
- [Usage](#usage)
- [Pip Install](#pip-install)
Expand All @@ -31,6 +32,11 @@ Custom exceptions can be applied the same way they are with [Statick exceptions]
- [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

The recommended method to install these Statick plugins is via pip:
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-tooling"
authors = [{name = "NIWC Pacific"}]
description="Statick analysis plugins for Tooling 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",
"types-docutils",
]

Expand Down