Skip to content

Commit

Permalink
Prepare release 3.0.4 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
debonte authored Nov 15, 2024
1 parent 7f96025 commit 4ceb4a5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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

Expand All @@ -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.
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion sarif/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Top-level version information for sarif-tools.
"""

__version__ = "3.0.3"
__version__ = "3.0.4"

0 comments on commit 4ceb4a5

Please sign in to comment.