Skip to content

Commit

Permalink
preparing for release (#16)
Browse files Browse the repository at this point in the history
Release v1.3.0
  • Loading branch information
reubenmiller authored Sep 25, 2020
1 parent e5a0298 commit 3c8dad4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
18 changes: 11 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@

## Unreleased

* Updating tparse library when parsing relative dates. Using a relative date/timestamp of "30" no longer causes a panic.

## Released

### v1.3.0

**PSc8y (PowerShell)**

* Using a relative date/timestamp of "30" no longer causes a panic when using `DateFrom` and `DateTo` parameters

* Removed unsupported query parameters from Remove-MeasurementCollection
* `valueFragmentType`
Expand All @@ -11,18 +18,15 @@
* Removed deprecated commands
`Remove-AuditRecordCollection`

* Updated Pester module to v5
* Fixed `New-Microservice` cmdlet and updated the examples. Resolves #14

* Fixed `New-Microservice` cmdlet
**Build Improvements**

* Updated Pester module to v5
* Updated `go-c8y` dependency to 0.8.0

* Enabled ci test runner

* Added parallel powershell tests execution to reduce test execution times

## Released

### v1.2.0

**PSc8y (PowerShell)**
Expand Down
2 changes: 1 addition & 1 deletion docker/bash.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apk update \

WORKDIR /home/c8yuser

RUN curl -L https://www.powershellgallery.com/api/v2/package/PSc8y/1.2.0 -o c8y.zip \
RUN curl -L https://www.powershellgallery.com/api/v2/package/PSc8y/1.3.0 -o c8y.zip \
&& unzip -p c8y.zip Dependencies/c8y.linux > /usr/bin/c8y \
&& chmod +x /usr/bin/c8y \
&& rm c8y.zip
Expand Down
2 changes: 1 addition & 1 deletion docker/zsh.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN apk update \
&& apk add curl unzip zsh git \
&& adduser -S c8yuser

RUN curl -L https://www.powershellgallery.com/api/v2/package/PSc8y/1.2.0 -o c8y.zip \
RUN curl -L https://www.powershellgallery.com/api/v2/package/PSc8y/1.3.0 -o c8y.zip \
&& unzip -p c8y.zip Dependencies/c8y.linux > /usr/bin/c8y \
&& chmod +x /usr/bin/c8y \
&& rm c8y.zip
Expand Down
2 changes: 1 addition & 1 deletion tools/PSc8y/PSc8y.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = './PSc8y.psm1'

# Version number of this module.
ModuleVersion = '1.2.0'
ModuleVersion = '1.3.0'

# Supported PSEditions
CompatiblePSEditions = @(
Expand Down

0 comments on commit 3c8dad4

Please sign in to comment.