Skip to content

Commit e47d1f5

Browse files
committed
Release: prepare v1.3.0
1 parent 1d91a5d commit e47d1f5

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ All notable changes to this project will be documented in this file.
1010

1111
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).
1212

13-
## [Unreleased] (1.3.0)
13+
## [1.3.0] - 2024-06-21
1414
### Added
15+
- [#39: Add `AbsolutePath::RelativeTo`](https://github.com/ForNeVeR/TruePath/issues/39).
16+
17+
Thanks to @ronimizy.
1518
- `IPath::IsPrefixOf` to check path prefixes.
1619

1720
Thanks to @babaruh.
@@ -85,4 +88,5 @@ This is the first published version of the package. It doesn't contain any featu
8588
[1.1.0]: https://github.com/ForNeVeR/TruePath/compare/v1.0.0...v1.1.0
8689
[1.2.0]: https://github.com/ForNeVeR/TruePath/compare/v1.1.0...v1.2.0
8790
[1.2.1]: https://github.com/ForNeVeR/TruePath/compare/v1.2.0...v1.2.1
88-
[Unreleased]: https://github.com/ForNeVeR/TruePath/compare/v1.2.1...HEAD
91+
[1.3.0]: https://github.com/ForNeVeR/TruePath/compare/v1.2.1...v1.3.0
92+
[Unreleased]: https://github.com/ForNeVeR/TruePath/compare/v1.3.0...HEAD

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SPDX-License-Identifier: MIT
66

77
<Project>
88
<PropertyGroup Label="Packaging">
9-
<Version>1.2.1</Version>
9+
<Version>1.3.0</Version>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1111
<Copyright>2024 TruePath contributors &lt;https://github.com/ForNeVeR/TruePath&gt;</Copyright>
1212
<PackageReadmeFile>README.md</PackageReadmeFile>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Aside from the strict types, the following features are supported for the paths:
7979
- `IPath::IsPrefixOf` to check path prefixes;
8080
- `IPath::StartsWith` to check if the current path starts with a specified path;
8181
- `LocalPath::IsAbsolute` to check the path kind (since it supports both kinds);
82-
- `LocalPath::RelativeTo` to get a relative part between two paths, if possible;
82+
- `AbsolutePath::RelativeTo`, `LocalPath::RelativeTo` to get a relative part between two paths, if possible;
8383
- extension methods on `IPath`:
8484
- `GetExtensionWithDot` and `GetExtensionWithoutDot` to get the file extension with or without the leading dot (note that `GetExtensionWithDot` will behave differently for paths ending with dots and paths without dot at all);
8585
- `GetFileNameWithoutExtension` to get the file name without the extension (and without the trailing dot, if any)

0 commit comments

Comments
 (0)