|
1 | 1 |
|
2 | 2 | @{ |
| 3 | + Copyright = '2020-2021' |
| 4 | + PowerShellVersion = '7.0' |
| 5 | + RootModule = 'BluebirdPS.psm1' |
| 6 | + CompanyName = 'thedavecarroll' |
| 7 | + ModuleVersion = '0.6.2' |
3 | 8 | Author = 'Dave Carroll' |
| 9 | + CompatiblePSEditions = 'Core' |
4 | 10 | FileList = @() |
5 | | - Description = 'A Twitter Automation Client for PowerShell 7. Tweet, retweet, send direct messages, manage lists, and more.' |
6 | | - RootModule = 'BluebirdPS.psm1' |
7 | | - Copyright = '2020-2021' |
8 | 11 | PrivateData = @{ |
9 | 12 | PSData = @{ |
10 | | - ReleaseNotes = '## 0.6.1 - 2021-06-16 |
11 | | -
|
12 | | - Bugfix, Feature, and Maintenance; Update Strongly Recommended |
13 | | -
|
| 13 | + Tags = @('Twitter-Client','Twitter-API','Twitter','Tweet','Automation','Social-Media') |
| 14 | + ReleaseNotes = '## 0.6.2 - 2021-06-20 |
| 15 | + |
| 16 | + Bugfix and Feature; Update Strongly Recommended |
| 17 | + |
14 | 18 | ### Fixed |
15 | | -
|
16 | | - - [Issue #71](https://github.com/thedavecarroll/BluebirdPS/issues/71) - Documentation - Get-TwitterSavedSearch - API reference link incorrect for saved_searches/show/:id |
17 | | - - [Issue #75](https://github.com/thedavecarroll/BluebirdPS/issues/75) - Import-TwitterAuthentication - Import from previous version throws error |
18 | | - - [Issue #77](https://github.com/thedavecarroll/BluebirdPS/issues/77) - Invoke-TwitterRequest - Stagger API request submissions |
19 | | - - [Issue #80](https://github.com/thedavecarroll/BluebirdPS/issues/80) - Uri for License and Project missing in PSGallery package |
20 | | -
|
21 | | - ### Changed |
22 | | -
|
23 | | - - [Issue #79](https://github.com/thedavecarroll/BluebirdPS/issues/79) - Get-TwitterApiEndpoint - Store endpoint data in a module variable |
24 | | -
|
25 | | - ### Added |
26 | | -
|
27 | | - - [Issue #74](https://github.com/thedavecarroll/BluebirdPS/issues/74) - Import-TwitterAuthentication - Use environment variables to set authentication values |
28 | | - - [Issue #76](https://github.com/thedavecarroll/BluebirdPS/issues/76) - Invoke-TwitterRequest - Add option for progress bar for paged requests |
29 | | - - [Issue #81](https://github.com/thedavecarroll/BluebirdPS/issues/81) - [BluebirdPS.ResponseData] - Add InvocationInfo to history |
30 | | - - [Issue #82](https://github.com/thedavecarroll/BluebirdPS/issues/82) - [BluebirdPS.APIV2.Objects.Poll] - Add TotalVotes property |
| 19 | + |
31 | 20 | - [Issue #73](https://github.com/thedavecarroll/BluebirdPS/issues/73) - LICENSE - Include license file with module |
32 | | -
|
33 | | - For full CHANGELOG, see https://docs.bluebirdps.dev/en/latest/CHANGELOG/' |
34 | | - Tags = @('Twitter-Client','Twitter-API','Twitter','Tweet','Automation','Social-Media') |
| 21 | + - [Issue #85](https://github.com/thedavecarroll/BluebirdPS/issues/85) - Invoke-TwitterRequest - Progress bar is displayed after the first page, even when there is no second page |
| 22 | + - [Issue #87](https://github.com/thedavecarroll/BluebirdPS/issues/87) - Invoke-TwitterRequest - tweets/search/recent endpoint used multiple times, but command only checks for Search-Tweet |
| 23 | + |
| 24 | + ### Added |
| 25 | + |
| 26 | + - [Issue #86](https://github.com/thedavecarroll/BluebirdPS/issues/86) - [BluebirdPS.ResponseData] - Add Timestamp property |
| 27 | + |
| 28 | + For full CHANGELOG, see https://docs.bluebirdps.dev/en/latest/CHANGELOG/ |
| 29 | + ' |
35 | 30 | LicenseUri = 'https://docs.bluebirdps.dev/en/latest/LICENSE/' |
36 | 31 | ProjectUri = 'https://github.com/thedavecarroll/BluebirdPS' |
37 | 32 | } |
38 | 33 | } |
39 | 34 | CmdletsToExport = @() |
40 | | - CompatiblePSEditions = 'Core' |
41 | | - ModuleVersion = '0.6.1' |
42 | 35 | VariablesToExport = @() |
43 | | - CompanyName = 'thedavecarroll' |
44 | | - AliasesToExport = @() |
45 | | - PowerShellVersion = '7.0' |
| 36 | + Description = 'A Twitter Automation Client for PowerShell 7. Tweet, retweet, send direct messages, manage lists, and more.' |
46 | 37 | FunctionsToExport = @() |
| 38 | + AliasesToExport = @() |
47 | 39 | GUID = 'b46904d8-98f5-430e-893a-5ad77ceed8bd' |
48 | 40 | } |
0 commit comments