From 4ceb4a51d83b40138e05371bcf4500f21a2779da Mon Sep 17 00:00:00 2001 From: Erik De Bonte Date: Fri, 15 Nov 2024 13:21:08 -0800 Subject: [PATCH] Prepare release 3.0.4 (#78) --- CHANGELOG.md | 10 +++++++--- pyproject.toml | 2 +- sarif/__init__.py | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fb3ab2..1d7a960 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.0.4] - 2024-11-15 + +- #73 Crash when using `--check`. + ## [3.0.3] - 2024-09-30 - #43 Support getting level from `ruleConfigurationOverrides` and `defaultConfiguration`. @@ -35,7 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Support "none" severity level. It's only included in the output if present in the input. +- Support "none" severity level. It's only included in the output if present in the input. ### Fixed @@ -55,7 +59,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Breaking Changes - "Code" and "Description" are now separate columns in the CSV output, whereas before they were - combined in the "Code" column. They are also separate keys in the "record" format if calling + combined in the "Code" column. They are also separate keys in the "record" format if calling sarif-tools from Python. - `--blame-filter` argument has been replaced with `--filter`, using a new YAML-based format for more general filtering to replace the previous ad hoc text format which only supported blame. @@ -121,7 +125,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Compatible with Python v3.8. Previously, Python v3.9 was required. +- Compatible with Python v3.8. Previously, Python v3.9 was required. ### Compatibility diff --git a/pyproject.toml b/pyproject.toml index 931fcac..69b7b6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sarif-tools" -version = "3.0.3" +version = "3.0.4" description = "SARIF tools" authors = ["Microsoft"] readme = "README.md" diff --git a/sarif/__init__.py b/sarif/__init__.py index 8d88868..16baab1 100644 --- a/sarif/__init__.py +++ b/sarif/__init__.py @@ -2,4 +2,4 @@ Top-level version information for sarif-tools. """ -__version__ = "3.0.3" +__version__ = "3.0.4"