From 13ef92b6d728343663ac5eaccf8eb5f1881cb457 Mon Sep 17 00:00:00 2001 From: Thomas Denewiler Date: Fri, 7 Feb 2025 07:56:54 -0800 Subject: [PATCH] Preparing for v0.4.0 release. - Marking package as deprecated. - All plugins moved to main `statick` package. - Pinned `statick` dependency to lower than v0.12 to avoid module collisions. --- CHANGELOG.md | 11 +++++++++++ README.md | 7 +++++++ pyproject.toml | 4 ++-- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 409259e..2411bf7 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.1 - 2025-01-20 ### Added diff --git a/README.md b/README.md index 8d35ba0..f603b91 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ Custom exceptions can be applied the same way they are with - [Statick Markdown Plugins](#statick-markdown-plugins) - [Table of Contents](#table-of-contents) + - [Deprecated](#deprecated) - [Installation](#installation) - [Usage](#usage) - [Dependency Versions](#dependency-versions) @@ -32,6 +33,11 @@ Custom exceptions can be applied the same way they are with - [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: @@ -166,3 +172,4 @@ black src tests [rstcheck]: https://github.com/myint/rstcheck [rst-lint]: https://github.com/twolfson/restructuredtext-lint [write-good]: https://github.com/btford/write-good +[Statick]: https://github.com/sscpac/statick diff --git a/pyproject.toml b/pyproject.toml index c719b8c..3aaa13c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "statick-md" authors = [{name = "NIWC Pacific"}] description="Statick analysis plugins for Markdown files." -version = "0.3.1" +version = "0.4.0" readme = "README.md" requires-python = ">=3.9" license = {text = "CC0-1.0"} @@ -25,7 +25,7 @@ dependencies = [ "restructuredtext-lint", "rstcheck", "sphinx", - "statick", + "statick<0.12", "types-docutils", ]