Skip to content

Commit

Permalink
Release 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
bjompen committed Jul 29, 2022
1 parent 1d33583 commit c9ac3f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions Docs/Help/Write-SecretStatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@ To add output to your default prompt, create or edit your prompt function and ad

To add this to your posh-git prompt add the following to your `$PROFILE` script **after the `Import-Module posh-git` statement!**

```PowerShell
$GitPromptSettings.DefaultPromptBeforeSuffix.Text = ' $(Write-SecretStatus)'
# You may also change the default white console output colour by running

You may also change the default white console output colour by running
$GitPromptSettings.DefaultPromptBeforeSuffix.ForegroundColor = 'LightBlue' # or any other colour of choice..
```

---

Expand Down
3 changes: 2 additions & 1 deletion PSSecretScanner.Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[string]$ModuleSourcePath = "$PSScriptRoot\Source"
[string]$HelpSourcePath = "$PSScriptRoot\Docs\Help"

[string]$Version = '1.0.7'
[string]$Version = '1.0.8'

[string]$OutputPath = "$PSScriptRoot\Bin\$ModuleName\$Version"

Expand All @@ -21,6 +21,7 @@ task Clean {

task Unit_Tests {
# .$PSScriptRoot\Tests\TestRunner.ps1 -Verbosity Normal -CodeCoverage
Invoke-Pester .\Tests -Output Detailed
}

task RunScriptAnalyzer {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ Yes, even keeping it simple there are stuff I might want to add some day, or if

## Changelog

- 2022-07-29
- 1.0.8, 2022-07-29
- Change from Get-ChildItem to Get-Item which is marginaly faster. (2 seconds/10000 objects)
- Add boolean-Recurse parameter defaulted to $true to support non recursive scans ([#18](https://github.com/bjompen/PSSecretScanner/issues/18))
- Added Write-SecretStatur to add to posh-git profile.
- Added Write-SecretStatus to add to posh-git profile ([#8](https://github.com/bjompen/PSSecretScanner/issues/8).
- 2022-07-28
- Added `-File` parameter ([#12](https://github.com/bjompen/PSSecretScanner/issues/12))
- Changed the **firebaseio** pattern to make scanning faster.
Expand Down

0 comments on commit c9ac3f7

Please sign in to comment.