diff --git a/Gmail.ps.psd1 b/Gmail.ps.psd1 index 4179c45..c14cc96 100644 --- a/Gmail.ps.psd1 +++ b/Gmail.ps.psd1 @@ -12,7 +12,7 @@ RootModule = 'Gmail.ps.psm1' # Version number of this module. -ModuleVersion = '0.4.1' +ModuleVersion = '0.5.0' # ID used to uniquely identify this module GUID = '2ec25beb-5e1c-421d-b465-253aff0ecdb0' diff --git a/README.md b/README.md index 602dbdb..2838f5b 100644 --- a/README.md +++ b/README.md @@ -485,18 +485,18 @@ Name | Pipeline input #### Examples -1. Search the Inbox based on the message returned by Get-Message, +1. Search the Inbox based on the message returned by [`Get-Message`](#get-message), and return all messages that are part of that conversaton and are in the Inbox: ```powershell - $gmail | Get-Mailbox Inbox | Get-Message -From z@gmail.com | Get-Conversaion + $gmail | Get-Mailbox "Inbox" | Get-Message -From "z@gmail.com" | Get-Conversaion ``` -2. Search "All Mail" based on the message returned by Get-Message, +2. Search "All Mail" based on the message returned by [`Get-Message`](#get-message), and return all messages that are part of that conversaton: ```powershell - $gmail | Get-Mailbox "All Mail" | Get-Message -From z@gmail.com | Get-Conversaion + $gmail | Get-Mailbox "All Mail" | Get-Message -From "z@gmail.com" | Get-Conversaion ``` ### Save-Attachment