diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d7a960..1d9909c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.5] - 2025-07-17 + +- #76 Support in HTML display rules as links, when help Uri provided +- #82 `trend` and `csv` output csv files have `\r\n` line terminators when generated on Linux machine +- #97 sarif blame crashes with UnicodeDecodeError when it encounters invalid UTF-8 + ## [3.0.4] - 2024-11-15 - #73 Crash when using `--check`. diff --git a/pyproject.toml b/pyproject.toml index 69b7b6f..0ea6ece 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sarif-tools" -version = "3.0.4" +version = "3.0.5" description = "SARIF tools" authors = ["Microsoft"] readme = "README.md" diff --git a/sarif/__init__.py b/sarif/__init__.py index 16baab1..936a4b2 100644 --- a/sarif/__init__.py +++ b/sarif/__init__.py @@ -2,4 +2,4 @@ Top-level version information for sarif-tools. """ -__version__ = "3.0.4" +__version__ = "3.0.5"