Skip to content

Commit

Permalink
updating changelog. increasing module version.
Browse files Browse the repository at this point in the history
  • Loading branch information
santisq committed Sep 12, 2023
1 parent 817ecde commit 7238b44
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# CHANGELOG

- __09/11/2023__
- No changes to the cmdlet but a few improvements to the code base:
- [x] <https://github.com/santisq/PSTree/issues/16> `PSTreeCache` and `PSTreeIndexer` internal classes have been sealed following the recommendations from dotnet/runtime#49944.
- [x] <https://github.com/santisq/PSTree/issues/17> `Indent` extension method has been changed to use `StringBuilder`.
- [x] <https://github.com/santisq/PSTree/issues/19> Improved `ConvertToTree` method. Was too complicated and inefficient, there was also no need to use `Regex`.
- [x] <https://github.com/santisq/PSTree/issues/20> `-Depth` parameter type was changed from `int` to `uint` and the documentation was updated accordingly.

- __07/28/2023__
- Added `.ToString()` method to `PSTreeFileSystemInfo<T>` instances, the method resolves to the instances `.FullName` property similar to [`FileSystemInfo.ToString` Method](https://learn.microsoft.com/en-us/dotnet/api/system.io.filesysteminfo.tostring?view=net-7.0#system-io-filesysteminfo-tostring). Now it should be possible to pipe `Get-PSTree` output to `Get-Item` and `Get-ChildItem` when needed:

Expand Down
4 changes: 3 additions & 1 deletion module/PSTree.psd1
Expand Up @@ -11,7 +11,7 @@
RootModule = 'bin/netstandard2.0/PSTree.dll'

# Version number of this module.
ModuleVersion = '2.1.13'
ModuleVersion = '2.1.14'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -97,6 +97,8 @@
'tree'
'powershell'
'csharp'
'recursion'
'tree-structure'
)

# A URL to the license for this module.
Expand Down

0 comments on commit 7238b44

Please sign in to comment.