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 @@ -10,6 +10,14 @@ 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).

## [1.12.0] - 2026-03-14
### Changed
- Update the dependencies.
- Drop the dependency on **Microsoft.Bcl.Memory** from a non-.NET-Standard package version.

### Added
- [#203](https://github.com/ForNeVeR/TruePath/issues/203): Add `PathIo.EnumerateFiles` extension methods. Thanks to @pkazakov-dev!

## [1.11.0] - 2025-11-25
### Fixed
- [#171: `AbsolutePath.Exists` should return `true` if the entity is a directory](https://github.com/ForNeVeR/TruePath/issues/171). Thanks to @cnaples79!
Expand Down Expand Up @@ -188,4 +196,5 @@ This is the first published version of the package. It doesn't contain any featu
[1.9.0]: https://github.com/ForNeVeR/TruePath/compare/v1.8.0...v1.9.0
[1.10.0]: https://github.com/ForNeVeR/TruePath/compare/v1.9.0...v1.10.0
[1.11.0]: https://github.com/ForNeVeR/TruePath/compare/v1.10.0...v1.11.0
[Unreleased]: https://github.com/ForNeVeR/TruePath/compare/v1.11.0...HEAD
[1.12.0]: https://github.com/ForNeVeR/TruePath/compare/v1.11.0...v1.12.0
[Unreleased]: https://github.com/ForNeVeR/TruePath/compare/v1.12.0...HEAD
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ SPDX-License-Identifier: MIT

<Project>
<PropertyGroup Label="Packaging">
<Version>1.11.0</Version>
<Version>1.12.0</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>2024-2025 TruePath contributors &lt;https://github.com/ForNeVeR/TruePath&gt;</Copyright>
<Copyright>2024-2026 TruePath contributors &lt;https://github.com/ForNeVeR/TruePath&gt;</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024-2025 TruePath contributors <https://github.com/ForNeVeR/TruePath>
Copyright (c) 2024-2026 TruePath contributors <https://github.com/ForNeVeR/TruePath>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Loading