Skip to content

Commit 6ef9968

Browse files
committed
Restructuring
Folder restructure and roadmap
1 parent a3f982a commit 6ef9968

35 files changed

+2123
-2241
lines changed

.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# Exclude test files
2-
test/
3-
test.*
1+
tests/

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to the [PSTK](https://github.com/Akaizoku/PSTK) project will
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.1.0](https://github.com/Akaizoku/PSTK/releases/tag/1.1.0) - 2018-10-15
8+
9+
### Added
10+
Added about_help (GB and US)
11+
12+
### Changed
13+
Updated folder structure
14+
Updated README
15+
16+
### Removed
17+
The following functions have been marked as internal and are no longer public:
18+
- Add-Offset
19+
- ConvertTo-TitleCase
20+
- Measure-FileProperty
21+
- Read-Properties
22+
- Read-Property
23+
- Show-ExceptionFullName
24+
- Test-Alphanumeric
25+
726
## [1.0.0](https://github.com/Akaizoku/PSTK/releases/tag/1.0.0) - 2018-10-05
827

928
Module manifest, README, LICENSE, and CHANGELOG.

PSTK.psd1

+27-4
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,34 @@ PowerShellVersion = '3.0'
6969
# NestedModules = @()
7070

7171
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
72-
FunctionsToExport = '*'
72+
FunctionsToExport = @(
73+
"Compare-Hashtable",
74+
"Compare-Properties",
75+
"Complete-RelativePath",
76+
"Convert-FileEncoding",
77+
"ConvertTo-NaturalSort",
78+
"ConvertTo-PDF",
79+
"Copy-OrderedHashtable",
80+
"Format-String",
81+
"Get-Object",
82+
"Get-Properties",
83+
"New-DynamicParameter",
84+
"Rename-NumberedFile",
85+
"Set-Tags",
86+
"Start-Script",
87+
"Stop-Script",
88+
"Test-SQLConnection",
89+
"Write-Log"
90+
)
7391

7492
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
75-
CmdletsToExport = '*'
93+
CmdletsToExport = @()
7694

7795
# Variables to export from this module
78-
VariablesToExport = '*'
96+
VariablesToExport = @()
7997

8098
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
81-
AliasesToExport = '*'
99+
AliasesToExport = @()
82100

83101
# DSC resources to export from this module
84102
# DscResourcesToExport = @()
@@ -108,6 +126,11 @@ PrivateData = @{
108126

109127
# ReleaseNotes of this module
110128
ReleaseNotes = @'
129+
## 1.1.0
130+
Updated folder structure
131+
Added about_help
132+
Restricted use of internal functions
133+
111134
## 1.0.0
112135
First release of the PowerShell Tool Kit module.
113136

0 commit comments

Comments
 (0)