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

Commit ba829ba

Browse files
prep for module publish
1 parent 4324dc5 commit ba829ba

File tree

2 files changed

+37
-31
lines changed

2 files changed

+37
-31
lines changed

BluebirdPS/BluebirdPS.psd1

Lines changed: 23 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,40 @@
11

22
@{
3+
Copyright = '2020-2021'
4+
PowerShellVersion = '7.0'
5+
RootModule = 'BluebirdPS.psm1'
6+
CompanyName = 'thedavecarroll'
7+
ModuleVersion = '0.6.2'
38
Author = 'Dave Carroll'
9+
CompatiblePSEditions = 'Core'
410
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'
811
PrivateData = @{
912
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+
1418
### 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+
3120
- [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+
'
3530
LicenseUri = 'https://docs.bluebirdps.dev/en/latest/LICENSE/'
3631
ProjectUri = 'https://github.com/thedavecarroll/BluebirdPS'
3732
}
3833
}
3934
CmdletsToExport = @()
40-
CompatiblePSEditions = 'Core'
41-
ModuleVersion = '0.6.1'
4235
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.'
4637
FunctionsToExport = @()
38+
AliasesToExport = @()
4739
GUID = 'b46904d8-98f5-430e-893a-5ad77ceed8bd'
4840
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.6.2 - 2021-06-20
4+
5+
Bugfix and Feature; Update Strongly Recommended
6+
7+
### Fixed
8+
9+
- [Issue #73](https://github.com/thedavecarroll/BluebirdPS/issues/73) - LICENSE - Include license file with module
10+
- [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
11+
- [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
12+
13+
### Added
14+
15+
- [Issue #86](https://github.com/thedavecarroll/BluebirdPS/issues/86) - [BluebirdPS.ResponseData] - Add Timestamp property
16+
317
## [0.6.1] - 2021-06-16
418

519
Bugfix, Feature, and Maintenance; Update Strongly Recommended

0 commit comments

Comments
 (0)