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

Commit 4d0a4eb

Browse files
authored
Merge pull request #25 from PowerShell/minor-fixes
add metadata and fix a failing test
2 parents bb9d8dc + c258f62 commit 4d0a4eb

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

src/Microsoft.PowerShell.IoT/Microsoft.PowerShell.IoT.csproj

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<Version>0.1.1.0</Version>
6+
<Authors>Microsoft Corporation</Authors>
7+
<Company>Microsoft Corporation</Company>
8+
<Product>Microsoft.PowerShell.IoT</Product>
9+
<PackageId>Microsoft.PowerShell.IoT</PackageId>
10+
<AssemblyVersion>0.1.1.0</AssemblyVersion>
11+
<FileVersion>0.1.1.0</FileVersion>
12+
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright>
13+
<PackageLicenseUrl>https://github.com/PowerShell/PowerShell-IoT/blob/master/LICENSE.txt</PackageLicenseUrl>
14+
<PackageProjectUrl>https://github.com/PowerShell/PowerShell-IoT</PackageProjectUrl>
15+
<RepositoryUrl>https://github.com/PowerShell/PowerShell-IoT</RepositoryUrl>
516
</PropertyGroup>
617

718
<ItemGroup>

src/Microsoft.PowerShell.IoT/Microsoft.PowerShell.IoT.psd1

+6-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
CompanyName="Microsoft Corporation"
88
Copyright="© Microsoft Corporation. All rights reserved."
99
Description='A PowerShell module for interacting with hardware sensors and devices using common protocols: GPIO, I2C & SPI.'
10-
ModuleVersion="0.1.0"
10+
ModuleVersion="0.1.1"
1111
FunctionsToExport = '*'
1212
CmdletsToExport = '*'
1313
AliasesToExport = @()
@@ -29,7 +29,11 @@
2929
# IconUri = ''
3030

3131
# ReleaseNotes of this module
32-
ReleaseNotes = '## 0.1.0
32+
ReleaseNotes = '## 0.1.1
33+
34+
Minor bug fixes
35+
36+
## 0.1.0
3337
3438
Initial preview of PowerShell IoT
3539
'

test/psiot.Tests.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Describe "PowerShell IoT tests" {
8585
}
8686
$result.Channel | Should -Be 0
8787
$result.Data[0] | Should -Be 0x8F
88-
$result.Responce[1] | Should -Be 0x33
88+
$result.Response[1] | Should -Be 0x33
8989
$result.Frequency | Should -Be 500000
9090
}
9191
It "Can use the -Raw flag to get the raw value" {

0 commit comments

Comments
 (0)