Skip to content
This repository has been archived by the owner on Feb 2, 2019. It is now read-only.

Commit

Permalink
v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nblagoev committed Mar 22, 2014
1 parent a12689f commit 281e32c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gmail.ps.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 281e32c

Please sign in to comment.