Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
prep for module publish
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavecarroll committed Jun 20, 2021
1 parent 4324dc5 commit ba829ba
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 31 deletions.
54 changes: 23 additions & 31 deletions BluebirdPS/BluebirdPS.psd1
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'
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.6.2 - 2021-06-20

Bugfix and Feature; Update Strongly Recommended

### Fixed

- [Issue #73](https://github.com/thedavecarroll/BluebirdPS/issues/73) - LICENSE - Include license file with module
- [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

## [0.6.1] - 2021-06-16

Bugfix, Feature, and Maintenance; Update Strongly Recommended
Expand Down

0 comments on commit ba829ba

Please sign in to comment.