Skip to content

Commit

Permalink
Release v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
twystd committed Jul 1, 2021
1 parent 64e2602 commit e5860ff
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
## CHANGELOG

### v0.7.x
### v0.7.1

1. Implemented `clear-task-list`
2. Implemented `add-task`
3. Implemented `refresh-task-list`
4. DateTime Stringer implementation reworked to not take pointer receiver
5. `encoding/conf` moved to `uhppoted-lib`

### v0.7.0

1. Rearchitected UHPPOTE implementation to use internal driver to send and receive UDP packets
2. Implemented `get-time-profile`
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DIST ?= development
DEBUG ?= --debug
VERSION = v0.7.x
LDFLAGS = -ldflags "-X uhppote.VERSION=$(VERSION)"
# VERSION = v0.7.x
# LDFLAGS = -ldflags "-X uhppote.VERSION=$(VERSION)"

.PHONY: bump

Expand Down
11 changes: 6 additions & 5 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
## v0.7.x
## v0.7.1

- [x] Update README
- [x] Make task dates not pointers
- [x] `clear-task-list`
- [x] `add-task`
- [x] `refresh-task-list`
- [x] `set-first-card`
- [x] Rework DateTime Stringer implementation
- [x] Move `encoding/conf` to `uhppoted-lib`

## TODO

- [ ] Move `encoding/conf` to `uhppoted-lib`
- [ ] Retype UHPPOTE.BindAddress as types.BindAddr
- [ ] Retype UHPPOTE.BroadcastAddress as types.BroadcastAddr
- [ ] Retype UHPPOTE.ListenAddress as types.ListenAddr

## TODO

- [ ] Implement separate Get..All functions (??)
- [ ] Add https://odi.ch/weblog/posting.php?posting=731 to cookbook
- [ ] (?) Rename types.Time to types.DeviceTime
- [ ] (?) Rename types.SystemTime to types.Time
- [ ] (?) Replace types.SystemDate with types.Date

- [ ] Look at https://github.com/mitchellh/cli and https://github.com/mitchellh/go-glint

### uhppote
- [ ] make types consistent across API
- [ ] Genericize message unit tests
Expand Down
2 changes: 1 addition & 1 deletion uhppote/uhppote.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
codec "github.com/uhppoted/uhppote-core/encoding/UTO311-L0x"
)

var VERSION string = "v0.7.x"
var VERSION string = "v0.7.1"

type driver interface {
Broadcast([]byte, *net.UDPAddr) ([][]byte, error)
Expand Down

0 comments on commit e5860ff

Please sign in to comment.