Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit 971a0d0

Browse files
authored
Preparing for v0.4.0 release. (#77)
- Marking package as deprecated. - All plugins moved to main `statick` package. - Pinned `statick` dependency to lower than v0.12 to avoid module collisions.
1 parent 4dd5a6f commit 971a0d0

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

7+
## v0.4.0 - 2025-02-07
8+
9+
This set of plugins was merged into the main [Statick] repository and Python package.
10+
All future development will happen in that repository.
11+
12+
### Updated
13+
14+
- The Statick dependency was pinned to lower than version 0.12.
15+
- This will ensure these plugins are not installed in the same space as the main `statick` package.
16+
Having both packages installed would cause conflicts between plugins.
17+
718
## v0.3.1 - 2025-01-20
819

920
### Added

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Custom exceptions can be applied the same way they are with
2020

2121
- [Statick Markdown Plugins](#statick-markdown-plugins)
2222
- [Table of Contents](#table-of-contents)
23+
- [Deprecated](#deprecated)
2324
- [Installation](#installation)
2425
- [Usage](#usage)
2526
- [Dependency Versions](#dependency-versions)
@@ -32,6 +33,11 @@ Custom exceptions can be applied the same way they are with
3233
- [Mypy](#mypy)
3334
- [Formatting](#formatting)
3435

36+
## Deprecated
37+
38+
This set of plugins was merged into the main [Statick] repository and Python package.
39+
All future development will happen in that repository.
40+
3541
## Installation
3642

3743
The recommended method to install these Statick plugins is via pip:
@@ -166,3 +172,4 @@ black src tests
166172
[rstcheck]: https://github.com/myint/rstcheck
167173
[rst-lint]: https://github.com/twolfson/restructuredtext-lint
168174
[write-good]: https://github.com/btford/write-good
175+
[Statick]: https://github.com/sscpac/statick

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "statick-md"
77
authors = [{name = "NIWC Pacific"}]
88
description="Statick analysis plugins for Markdown files."
9-
version = "0.3.1"
9+
version = "0.4.0"
1010
readme = "README.md"
1111
requires-python = ">=3.9"
1212
license = {text = "CC0-1.0"}
@@ -25,7 +25,7 @@ dependencies = [
2525
"restructuredtext-lint",
2626
"rstcheck",
2727
"sphinx",
28-
"statick",
28+
"statick<0.12",
2929
"types-docutils",
3030
]
3131

0 commit comments

Comments
 (0)