Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AsBuiltReport.Chart/AsBuiltReport.Chart.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'AsBuiltReport.Chart.psm1'

# Version number of this module.
ModuleVersion = '0.3.0'
ModuleVersion = '0.3.1'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - 2026-04-23

### Changed

- Update module version to 0.3.1
- Update ScottPlot .NET dependency to version v5.1.58

## [0.3.0] - 2026-03-14

### Added
Expand Down
3 changes: 2 additions & 1 deletion Sources/AsBuiltReportChart.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<!-- <OutputType>Exe</OutputType> -->
<Version>0.3.1</Version>
Copy link

Copilot AI Apr 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The <Version> element indentation is inconsistent with the surrounding XML (extra leading spaces). While it won’t change build output, keeping consistent indentation reduces noisy diffs and makes the project file easier to read/maintain.

Suggested change
<Version>0.3.1</Version>
<Version>0.3.1</Version>

Copilot uses AI. Check for mistakes.
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HarfBuzzSharp.NativeAssets.Linux" Version="8.3.1.3" />
<PackageReference Include="PowerShellStandard.Library" Version="5.1.1" />
<PackageReference Include="ScottPlot" Version="5.1.57" />
<PackageReference Include="ScottPlot" Version="5.1.58" />
<PackageReference Include="SkiaSharp" Version="3.119.2" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="3.119.2" />
</ItemGroup>
Expand Down
Loading