This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4324dc5
commit ba829ba
Showing
2 changed files
with
37 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,40 @@ | ||
|
||
@{ | ||
Copyright = '2020-2021' | ||
PowerShellVersion = '7.0' | ||
RootModule = 'BluebirdPS.psm1' | ||
CompanyName = 'thedavecarroll' | ||
ModuleVersion = '0.6.2' | ||
Author = 'Dave Carroll' | ||
CompatiblePSEditions = 'Core' | ||
FileList = @() | ||
Description = 'A Twitter Automation Client for PowerShell 7. Tweet, retweet, send direct messages, manage lists, and more.' | ||
RootModule = 'BluebirdPS.psm1' | ||
Copyright = '2020-2021' | ||
PrivateData = @{ | ||
PSData = @{ | ||
ReleaseNotes = '## 0.6.1 - 2021-06-16 | ||
Bugfix, Feature, and Maintenance; Update Strongly Recommended | ||
Tags = @('Twitter-Client','Twitter-API','Twitter','Tweet','Automation','Social-Media') | ||
ReleaseNotes = '## 0.6.2 - 2021-06-20 | ||
Bugfix and Feature; Update Strongly Recommended | ||
### Fixed | ||
- [Issue #71](https://github.com/thedavecarroll/BluebirdPS/issues/71) - Documentation - Get-TwitterSavedSearch - API reference link incorrect for saved_searches/show/:id | ||
- [Issue #75](https://github.com/thedavecarroll/BluebirdPS/issues/75) - Import-TwitterAuthentication - Import from previous version throws error | ||
- [Issue #77](https://github.com/thedavecarroll/BluebirdPS/issues/77) - Invoke-TwitterRequest - Stagger API request submissions | ||
- [Issue #80](https://github.com/thedavecarroll/BluebirdPS/issues/80) - Uri for License and Project missing in PSGallery package | ||
### Changed | ||
- [Issue #79](https://github.com/thedavecarroll/BluebirdPS/issues/79) - Get-TwitterApiEndpoint - Store endpoint data in a module variable | ||
### Added | ||
- [Issue #74](https://github.com/thedavecarroll/BluebirdPS/issues/74) - Import-TwitterAuthentication - Use environment variables to set authentication values | ||
- [Issue #76](https://github.com/thedavecarroll/BluebirdPS/issues/76) - Invoke-TwitterRequest - Add option for progress bar for paged requests | ||
- [Issue #81](https://github.com/thedavecarroll/BluebirdPS/issues/81) - [BluebirdPS.ResponseData] - Add InvocationInfo to history | ||
- [Issue #82](https://github.com/thedavecarroll/BluebirdPS/issues/82) - [BluebirdPS.APIV2.Objects.Poll] - Add TotalVotes property | ||
- [Issue #73](https://github.com/thedavecarroll/BluebirdPS/issues/73) - LICENSE - Include license file with module | ||
For full CHANGELOG, see https://docs.bluebirdps.dev/en/latest/CHANGELOG/' | ||
Tags = @('Twitter-Client','Twitter-API','Twitter','Tweet','Automation','Social-Media') | ||
- [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 | ||
- [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 | ||
### Added | ||
- [Issue #86](https://github.com/thedavecarroll/BluebirdPS/issues/86) - [BluebirdPS.ResponseData] - Add Timestamp property | ||
For full CHANGELOG, see https://docs.bluebirdps.dev/en/latest/CHANGELOG/ | ||
' | ||
LicenseUri = 'https://docs.bluebirdps.dev/en/latest/LICENSE/' | ||
ProjectUri = 'https://github.com/thedavecarroll/BluebirdPS' | ||
} | ||
} | ||
CmdletsToExport = @() | ||
CompatiblePSEditions = 'Core' | ||
ModuleVersion = '0.6.1' | ||
VariablesToExport = @() | ||
CompanyName = 'thedavecarroll' | ||
AliasesToExport = @() | ||
PowerShellVersion = '7.0' | ||
Description = 'A Twitter Automation Client for PowerShell 7. Tweet, retweet, send direct messages, manage lists, and more.' | ||
FunctionsToExport = @() | ||
AliasesToExport = @() | ||
GUID = 'b46904d8-98f5-430e-893a-5ad77ceed8bd' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters