Skip to content

Commit

Permalink
Fix missing comma in module manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
mkht committed Nov 5, 2018
1 parent 41a7c05 commit 6b6fe5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DSCR_FileContent.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
RootModule = 'DSCR_FileContent.psm1'

# Version number of this module.
ModuleVersion = '1.0.2'
ModuleVersion = '1.0.3'

# ID used to uniquely identify this module
GUID = '8e9d0992-d96a-4489-8077-a04b1a560c4c'
Expand Down Expand Up @@ -43,7 +43,7 @@
# DSC resources to export from this module
DscResourcesToExport = @(
'IniFile',
'JsonFile'
'JsonFile',
'TextFile'
)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ Key1=Value1

----
## ChangeLog
### 1.0.2
### 1.0.3
+ Fixed an issue where character at the end of line may not be output correctly when `CRLF` is specified for NewLine.

### 1.0.1
Expand Down

0 comments on commit 6b6fe5e

Please sign in to comment.