Skip to content

Commit

Permalink
!deploy v0.3.0 release
Browse files Browse the repository at this point in the history
## 0.3.0 - 2019-09-07

* [Issue #15](#15)
  * Added `Add-PSProfileToProfile` function to easily add `Import-Module PSProfile` to your PowerShell profile.
* [Issue #16](#16)
  * Added the following functions from the `PSProfile.PowerTools` plugin to PSProfile directly:
    * `Confirm-ScriptIsValid`
    * `Enter-CleanEnvironment`
    * `Format-Syntax`
    * `Get-Definition`
    * `Get-Gist`
    * `Get-LongPath`
    * `Install-LatestModule`
    * `Open-Code`
    * `Open-Item`
    * `Pop-Path`
    * `Push-Path`
    * `Start-BuildScript`
    * `Test-RegEx`
  * Added HelpFile for Power Tools functions: `Get-Help about_PSProfile_Power_Tools`
  * Updated `Start-PSProfileConfigurationHelper` with Power Tools section
* Miscellaneous
  * Cleaned up `PSProfile` class.
  * Updated alias list.
  * Updated module versioning strategy in build script.
  * Updated `GitAliases` plugin to only spawn 1 runspace in the background.
  * Fixed issue with `Copy-Parameters` where it would fail to pull parameters for commands with multiple parameter sets.
  * Updated Content.Tests.
  * Updated azure-pipelines YAML.
  * Renamed the InvokeBuild script from `tasks.build.ps1` to `invoke.build.ps1`.
  • Loading branch information
scrthq committed Sep 8, 2019
1 parent a67fad6 commit 5d4aaaa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions PSProfile/Public/Power Tools/Get-LongPath.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ function Get-LongPath {
$target = Join-Path $target ($Subpaths -join [System.IO.Path]::DirectorySeparatorChar)
}
Write-Verbose "Resolved long path: $target"
$target
}
}

Expand Down

0 comments on commit 5d4aaaa

Please sign in to comment.