Skip to content

Commit 5827e7c

Browse files
committed
0.0.7 release
1 parent b748f0d commit 5827e7c

118 files changed

Lines changed: 13541 additions & 21 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ModuleBuild.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Zachary Loeber
55
#
6-
# Generated on: 6/14/2017
6+
# Generated on: 6/15/2017
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = 'ModuleBuild.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.0.6'
15+
ModuleVersion = '0.0.7'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -33,7 +33,7 @@ Copyright = '(c) 2017 Zachary Loeber. All rights reserved.'
3333
Description = 'A scaffolding framework which can be used to kickstart a generic PowerShell module project.'
3434

3535
# Minimum version of the Windows PowerShell engine required by this module
36-
# PowerShellVersion = ''
36+
PowerShellVersion = '5.0.0'
3737

3838
# Name of the Windows PowerShell host required by this module
3939
# PowerShellHostName = ''
@@ -107,7 +107,7 @@ PrivateData = @{
107107
IconUri = 'https://github.com/zloeber/ModuleBuild/raw/master/src/other/powershell-project.png'
108108

109109
# ReleaseNotes of this module
110-
ReleaseNotes = '0.0.6 Release'
110+
ReleaseNotes = '0.0.7 release'
111111

112112
# External dependent modules of this module
113113
# ExternalModuleDependencies = ''

build/docs/Additional/ReleaseNotes.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

build/docs/Additional/ToDo.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# ModuleBuild ToDo List
2+
3+
Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
4+
5+
There are many items which are possible and should probably be added to this project. Here are a few thoughts on ones I'll probably get addressed sooner or later;
6+
7+
- Update the sensitive parameter scans to be a pester test instead
8+
- Add pre-gallary deployment pester tests for any files that will cause issues or cause the psscript analyzer at the gallery to fail (so files beginning with a period will not transfer, ps1 files in extra directories will cause analyzer failures, et cetera)
9+
- Create functions to pull exported functions from another loaded module (function only) and recreate them in the current module project directory would be cool.
10+
- Better git tasks?
11+
- Include more useful base pester tests for standard modules
12+
- Automatic module version update options if uploading to the gallery
13+
- Automatic clean up of additional loaded modules when uploading to the gallery
14+
- Powershell Core compatibility
15+
- Automatic updates of the ReleaseNotes.md file

docs/ToDo.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# ModuleBuild ToDo List
2+
3+
Project Site: [https://github.com/zloeber/ModuleBuild](https://github.com/zloeber/ModuleBuild)
4+
5+
There are many items which are possible and should probably be added to this project. Here are a few thoughts on ones I'll probably get addressed sooner or later;
6+
7+
- Update the sensitive parameter scans to be a pester test instead
8+
- Add pre-gallary deployment pester tests for any files that will cause issues or cause the psscript analyzer at the gallery to fail (so files beginning with a period will not transfer, ps1 files in extra directories will cause analyzer failures, et cetera)
9+
- Create functions to pull exported functions from another loaded module (function only) and recreate them in the current module project directory would be cool.
10+
- Better git tasks?
11+
- Include more useful base pester tests for standard modules
12+
- Automatic module version update options if uploading to the gallery
13+
- Automatic clean up of additional loaded modules when uploading to the gallery
14+
- Powershell Core compatibility
15+
- Automatic updates of the ReleaseNotes.md file

mkdocs.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ site_name: ModuleBuild Docs
66
Pages:
77
Home: Home\index.md
88
Introduction: Introduction\Introduction.md
9+
Change Log: ChangeLog.md
910
Usage:
1011
- 1 - Initialization: Usage\1 - Initialization.md
1112
- 2 - Make Your Module: Usage\2 - Make Your Module.md
@@ -20,4 +21,7 @@ Pages:
2021
- Get-BuildEnvironment: release\ModuleBuild/docs/Get-BuildEnvironment.md
2122
- Initialize-ModuleBuild: release\ModuleBuild/docs/Initialize-ModuleBuild.md
2223
- Set-BuildEnvironment: release\ModuleBuild/docs/Set-BuildEnvironment.md
24+
Contributing: Contributing.md
25+
To Do: ToDo.md
26+
Acknowledgements: Acknowledgements.md
2327
repo_url: https://github.com/zloeber/ModuleBuild

plaster/ModuleBuild/plasterManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
templateType="Project" xmlns="http://www.microsoft.com/schemas/PowerShell/Plaster/v1">
55
<metadata>
66
<name>ModuleBuild</name>
7-
<id>747209ea-56c5-44fc-a9d9-deba4d5a03b5</id>
7+
<id>fa648c84-3eb7-442b-a0b7-cb82f2c887b5</id>
88
<version>0.0.5</version>
99
<title>New ModuleBuild Project</title>
1010
<description>Create a new PowerShell Module with a ModuleBuild wrapper</description>

release/0.0.7/ModuleBuild.psd1

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
#
2+
# Module manifest for module 'PSGet_ModuleBuild'
3+
#
4+
# Generated by: Zachary Loeber
5+
#
6+
# Generated on: 6/15/2017
7+
#
8+
9+
@{
10+
11+
# Script module or binary module file associated with this manifest.
12+
RootModule = 'ModuleBuild.psm1'
13+
14+
# Version number of this module.
15+
ModuleVersion = '0.0.7'
16+
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
19+
20+
# ID used to uniquely identify this module
21+
GUID = '8f6090b4-6411-4949-a717-96d64a1cc5b3'
22+
23+
# Author of this module
24+
Author = 'Zachary Loeber'
25+
26+
# Company or vendor of this module
27+
CompanyName = 'Zachary Loeber'
28+
29+
# Copyright statement for this module
30+
Copyright = '(c) 2017 Zachary Loeber. All rights reserved.'
31+
32+
# Description of the functionality provided by this module
33+
Description = 'A scaffolding framework which can be used to kickstart a generic PowerShell module project.'
34+
35+
# Minimum version of the Windows PowerShell engine required by this module
36+
PowerShellVersion = '5.0.0'
37+
38+
# Name of the Windows PowerShell host required by this module
39+
# PowerShellHostName = ''
40+
41+
# Minimum version of the Windows PowerShell host required by this module
42+
# PowerShellHostVersion = ''
43+
44+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45+
# DotNetFrameworkVersion = ''
46+
47+
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48+
# CLRVersion = ''
49+
50+
# Processor architecture (None, X86, Amd64) required by this module
51+
# ProcessorArchitecture = ''
52+
53+
# Modules that must be imported into the global environment prior to importing this module
54+
# RequiredModules = @()
55+
56+
# Assemblies that must be loaded prior to importing this module
57+
# RequiredAssemblies = @()
58+
59+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
60+
# ScriptsToProcess = @()
61+
62+
# Type files (.ps1xml) to be loaded when importing this module
63+
# TypesToProcess = @()
64+
65+
# Format files (.ps1xml) to be loaded when importing this module
66+
# FormatsToProcess = @()
67+
68+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
69+
# NestedModules = @()
70+
71+
# 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 = 'Get-BuildEnvironment', 'Initialize-ModuleBuild',
73+
'Set-BuildEnvironment'
74+
75+
# 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.
76+
CmdletsToExport = @()
77+
78+
# Variables to export from this module
79+
# VariablesToExport = @()
80+
81+
# 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.
82+
AliasesToExport = @()
83+
84+
# DSC resources to export from this module
85+
# DscResourcesToExport = @()
86+
87+
# List of all modules packaged with this module
88+
# ModuleList = @()
89+
90+
# List of all files packaged with this module
91+
# FileList = @()
92+
93+
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
94+
PrivateData = @{
95+
96+
PSData = @{
97+
98+
# Tags applied to this module. These help with module discovery in online galleries.
99+
Tags = 'scaffold','Module','Invoke-Build'
100+
101+
# A URL to the license for this module.
102+
LicenseUri = 'https://github.com/zloeber/ModuleBuild/raw/master/license.md'
103+
104+
# A URL to the main website for this project.
105+
ProjectUri = 'https://github.com/zloeber/ModuleBuild'
106+
107+
# A URL to an icon representing this module.
108+
IconUri = 'https://github.com/zloeber/ModuleBuild/raw/master/src/other/powershell-project.png'
109+
110+
# ReleaseNotes of this module
111+
ReleaseNotes = '0.0.7 release'
112+
113+
# External dependent modules of this module
114+
# ExternalModuleDependencies = ''
115+
116+
} # End of PSData hashtable
117+
118+
} # End of PrivateData hashtable
119+
120+
# HelpInfo URI of this module
121+
# HelpInfoURI = ''
122+
123+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
124+
# DefaultCommandPrefix = ''
125+
126+
}
127+

0 commit comments

Comments
 (0)