Skip to content

Commit e7d7915

Browse files
committed
starting 0.3.0
1 parent 0ccfb76 commit e7d7915

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# XRLint Change History
22

3+
## Version 0.3.0 (in development)
4+
5+
36
## Version 0.2.0 (14.01.2025)
47

58
- Rule description is now your `RuleOp`'s docstring

docs/rule-ref.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Rule Reference
22

3+
This page is auto-generated from XRLint's builtin rules (`python -m mkruleref`).
4+
New rules will be added by upcoming XRLint releases.
5+
36
## Core Rules
47

58
### :material-bug: `coords-for-dims`

mkruleref.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ def write_rule_ref_page():
2121
xcube = xrlint.plugins.xcube.export_plugin()
2222
with open("docs/rule-ref.md", "w") as stream:
2323
stream.write("# Rule Reference\n\n")
24+
stream.write(
25+
"This page is auto-generated from XRLint's builtin"
26+
" rules (`python -m mkruleref`).\n"
27+
"New rules will be added by upcoming XRLint releases.\n\n"
28+
)
2429
stream.write("## Core Rules\n\n")
2530
write_plugin_rules(stream, core)
2631
stream.write("## xcube Rules\n\n")

xrlint/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.2.0"
1+
version = "0.3.0.dev0"

0 commit comments

Comments
 (0)