Skip to content

Commit

Permalink
Release v0.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
twystd committed Jan 2, 2021
1 parent f4feb13 commit 9e7415b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = v0.7.x
VERSION = v0.6.7
LDFLAGS = -ldflags "-X uhppote.VERSION=$(VERSION)"
DIST ?= development

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Supported operating systems:

| *Version* | *Description* |
| --------- | ----------------------------------------------------------------------------------------- |
| v0.6.7 | Implements `record-special-events` and door open, close and button actions and events |
| v0.6.5 | Maintenance release for version compatibility with `node-red-contrib-uhppoted` |
| v0.6.4 | Maintenance release for version compatibility with `uhppoted-app-sheets` |
| v0.6.3 | Reworked card list as fixed length array and emulated deleted records |
Expand Down
2 changes: 1 addition & 1 deletion documentation/simulator-api.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: "3.0.2"

info:
version: 0.6.8
version: 0.6.7
title: "uhppote-simulator"
description: "REST API for the UHPPOTE simulator command interface"
license:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/uhppoted/uhppote-simulator

go 1.15

require github.com/uhppoted/uhppote-core v0.6.6-0.20201215204907-3f760e5236ab
require github.com/uhppoted/uhppote-core v0.6.7
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ github.com/uhppoted/uhppote-core v0.6.5 h1:oNDCsGa+Gnk0ofP7UaEGW1Ft36B1TnlPVGqAE
github.com/uhppoted/uhppote-core v0.6.5/go.mod h1:vNtTfp28e+/hhDtHXdlCEhdqt8063rlnA06wbzWSuz0=
github.com/uhppoted/uhppote-core v0.6.6-0.20201215204907-3f760e5236ab h1:cFizleADlzZoTsU5lYnq9qQEKhLbDeVSQ2qaASjJkRs=
github.com/uhppoted/uhppote-core v0.6.6-0.20201215204907-3f760e5236ab/go.mod h1:CDoDTRrLF5pPI2G6PxpJ+AXDg/yvMDE+XGsYA0WUY1g=
github.com/uhppoted/uhppote-core v0.6.7 h1:XHEBOGUaVmRrE/eThaXL1uwCns+AQYodNkeuHkfUVNA=
github.com/uhppoted/uhppote-core v0.6.7/go.mod h1:CDoDTRrLF5pPI2G6PxpJ+AXDg/yvMDE+XGsYA0WUY1g=
2 changes: 1 addition & 1 deletion simulator/UT0311L04/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func (s *UT0311L04) Close(door uint8) (bool, error) {
// being held unlocked while the button is pressed.
//
// A 'button pressed' event is generated and sent to the event listener (if any) if
// 'record special events' is enabled. An event will not be generated if a previous
// 'record special events' is enabled. An event will not be generated if a previous
// button press is still active but will extend the duration of the action.
func (s *UT0311L04) ButtonPressed(door uint8, duration time.Duration) (bool, error) {
if door < 1 || door > 4 {
Expand Down

0 comments on commit 9e7415b

Please sign in to comment.