diff --git a/CHANGELOG.md b/CHANGELOG.md index e805dcae..e0b59c63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Rotated polygons and text used in the worksheet (#466) - BoM: - Problems when trying to aggregate the datasheet field (#472) +- kibot-check: + - Show 7.x as supported (#469) ## [1.6.3] - 2023-06-26 diff --git a/src/kibot-check b/src/kibot-check index 7118861a..4beae1cc 100755 --- a/src/kibot-check +++ b/src/kibot-check @@ -1728,7 +1728,7 @@ if kicad_ok: version = 'Older than 5.1.6' else: version = NOT_AVAIL -if kicad_version >= (5, 1, 6) and kicad_version < (6, 99): +if kicad_version >= (5, 1, 6) and kicad_version < (7, 99): sev = 0 else: sev = 4 diff --git a/src/kibot-check.in b/src/kibot-check.in index d10c8015..369d3c9f 100755 --- a/src/kibot-check.in +++ b/src/kibot-check.in @@ -409,7 +409,7 @@ if kicad_ok: version = 'Older than 5.1.6' else: version = NOT_AVAIL -if kicad_version >= (5, 1, 6) and kicad_version < (6, 99): +if kicad_version >= (5, 1, 6) and kicad_version < (7, 99): sev = 0 else: sev = 4