Skip to content

Commit fd2a314

Browse files
Update functions, privatedata, version in psd1 [skip ci]
1 parent e2e2ae3 commit fd2a314

1 file changed

Lines changed: 17 additions & 5 deletions

File tree

PSSQLite/PSSQLite.psd1

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
ModuleToProcess = 'PSSQLite.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '1.0.2'
7+
ModuleVersion = '1.1.0'
88

99
# ID used to uniquely identify this module
1010
GUID = '381f3394-9b8a-492e-94b4-b3aa9e775761'
1111

1212
# Author of this module
13-
Author = 'ramblingcookiemonster'
13+
Author = 'Warren Frame'
1414

1515
# Company or vendor of this module
1616
CompanyName = ''
@@ -58,7 +58,7 @@ PowerShellVersion = '2.0'
5858
# NestedModules = @()
5959

6060
# Functions to export from this module
61-
# FunctionsToExport = '*'
61+
FunctionsToExport = @('Invoke-SqliteBulkCopy', 'Invoke-SqliteQuery', 'New-SqliteConnection', 'Out-DataTable', 'Update-Sqlite')
6262

6363
# Cmdlets to export from this module
6464
# CmdletsToExport = '*'
@@ -75,8 +75,20 @@ PowerShellVersion = '2.0'
7575
# List of all files packaged with this module
7676
# FileList = @()
7777

78-
# Private data to pass to the module specified in RootModule/ModuleToProcess
79-
# PrivateData = ''
78+
# 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.
79+
PrivateData = @{
80+
PSData = @{
81+
# Tags applied to this module. These help with module discovery in online galleries.
82+
Tags = @('sql', 'sqlite', 'Query', 'Database')
83+
84+
# A URL to the license for this module.
85+
LicenseUri = 'https://github.com/RamblingCookieMonster/PSSQLite/blob/master/LICENSE'
86+
87+
# A URL to the main website for this project.
88+
ProjectUri = 'https://github.com/RamblingCookieMonster/PSSQLite'
89+
} # End of PSData hashtable
90+
91+
} # End of PrivateData hashtable
8092

8193
# HelpInfo URI of this module
8294
# HelpInfoURI = ''

0 commit comments

Comments
 (0)