From ff00b8695bd8886b20fa60f4e7ecb35b72640829 Mon Sep 17 00:00:00 2001 From: Erik De Bonte Date: Mon, 30 Sep 2024 10:57:45 -0700 Subject: [PATCH] Prepare release 3.0.3 (#71) --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- sarif/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c93e100..2fb3ab2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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.3] - 2024-09-30 + +- #43 Support getting level from `ruleConfigurationOverrides` and `defaultConfiguration`. +- #68 Fixed regression where reversing diff direction gave different results. + ## [3.0.2] - 2024-09-18 - #55 part 2: Add `executionSuccessful` to `copy` operation output for SARIF schema compliance. diff --git a/pyproject.toml b/pyproject.toml index ca210de..c038219 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sarif-tools" -version = "3.0.2" +version = "3.0.3" description = "SARIF tools" authors = ["Microsoft"] readme = "README.md" diff --git a/sarif/__init__.py b/sarif/__init__.py index 4fa272e..8d88868 100644 --- a/sarif/__init__.py +++ b/sarif/__init__.py @@ -2,4 +2,4 @@ Top-level version information for sarif-tools. """ -__version__ = "3.0.2" +__version__ = "3.0.3"