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
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.4.2] - 2026-02-09

### Fixed
- **Case-insensitive boolean comparison** in ConditionalEvaluator - boolean values like `True`/`False`/`TRUE`/`FALSE` are now correctly compared regardless of case, while preserving case-sensitive string comparisons (#72)

### Improved
- Test coverage increased to 965 tests

## [1.4.1] - 2026-01-07

### Added
Expand Down Expand Up @@ -154,7 +162,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Cross-platform: Windows, Linux, macOS
- No Microsoft Word installation required

[Unreleased]: https://github.com/TriasDev/templify/compare/v1.4.1...HEAD
[Unreleased]: https://github.com/TriasDev/templify/compare/v1.4.2...HEAD
[1.4.2]: https://github.com/TriasDev/templify/compare/v1.4.1...v1.4.2
[1.4.1]: https://github.com/TriasDev/templify/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/TriasDev/templify/compare/v1.3.0...v1.4.0
[1.3.0]: https://github.com/TriasDev/templify/compare/v1.2.0...v1.3.0
Expand Down
4 changes: 2 additions & 2 deletions TriasDev.Templify/TriasDev.Templify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<!-- NuGet Package Metadata -->
<PackageId>TriasDev.Templify</PackageId>
<Version>1.4.1</Version>
<Version>1.4.2</Version>

Copilot AI Feb 9, 2026

Copy link

Choose a reason for hiding this comment

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

Version is bumped to 1.4.2 here, but CHANGELOG.md still has 1.4.1 as the latest entry and the [Unreleased] compare link points to v1.4.1. For a release prep PR, update CHANGELOG.md to add a 1.4.2 section and advance the compare links so the changelog stays consistent with the published package version.

Copilot uses AI. Check for mistakes.
<Authors>TriasDev GmbH &amp; Co. KG</Authors>
<Company>TriasDev GmbH &amp; Co. KG</Company>
<Description>High-performance templating engine for .NET. Process Word documents (.docx) and plain text templates with the same powerful syntax. Replace placeholders, evaluate conditionals, and process loops without Microsoft Word. Built on OpenXML SDK with 100% test coverage.</Description>
Expand All @@ -22,7 +22,7 @@
<RepositoryType>git</RepositoryType>
<PackageTags>word;docx;template;openxml;document-generation;templating;word-documents;office;dotnet;email;text-templates</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>v1.4.1: Processing warnings system - collect non-fatal warnings (missing variables, null collections, failed expressions) during template processing. Generate Word document warning reports.</PackageReleaseNotes>
<PackageReleaseNotes>v1.4.2: Fix case-insensitive boolean comparison in ConditionalEvaluator - boolean values like True/False/TRUE/FALSE are now correctly compared regardless of case, while preserving case-sensitive string comparisons.</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading