Skip to content

Commit 3cd2ec2

Browse files
authored
Release 1.5.1 (#41)
1 parent dd2c509 commit 3cd2ec2

File tree

4 files changed

+24
-458
lines changed

4 files changed

+24
-458
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This changelog contains the changes made between releases. The versioning follow
44

55
## Unreleased
66

7+
## [1.5.1] - 2023-01-08
8+
79
### Changed
810

911
- `latest` Docker tag now points to most recent release and `master` points to the build from the default branch
@@ -75,6 +77,8 @@ This changelog contains the changes made between releases. The versioning follow
7577

7678
- Initial release
7779

80+
[1.5.1]: https://github.com/xperimental/netatmo-exporter/releases/tag/v1.5.1
81+
[1.5.0]: https://github.com/xperimental/netatmo-exporter/releases/tag/v1.5.0
7882
[1.4.0]: https://github.com/xperimental/netatmo-exporter/releases/tag/v1.4.0
7983
[1.3.0]: https://github.com/xperimental/netatmo-exporter/releases/tag/v1.3.0
8084
[1.2.0]: https://github.com/xperimental/netatmo-exporter/releases/tag/v1.2.0

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM golang:1.19.3-alpine AS builder
1+
FROM --platform=$BUILDPLATFORM golang:1.19.4-alpine AS builder
22

33
ARG TARGETOS
44
ARG TARGETARCH

go.mod

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ go 1.19
44

55
require (
66
github.com/exzz/netatmo-api-go v0.0.0-20201009073308-a8620474d1ea
7-
github.com/google/go-cmp v0.5.8
7+
github.com/google/go-cmp v0.5.9
88
github.com/prometheus/client_golang v1.14.0
9-
github.com/prometheus/procfs v0.8.0 // indirect
9+
github.com/prometheus/procfs v0.9.0 // indirect
1010
github.com/sirupsen/logrus v1.9.0
1111
github.com/spf13/pflag v1.0.5
12-
golang.org/x/net v0.2.0 // indirect
13-
golang.org/x/oauth2 v0.2.0 // indirect
14-
golang.org/x/sys v0.3.0 // indirect
12+
golang.org/x/net v0.5.0 // indirect
13+
golang.org/x/oauth2 v0.4.0 // indirect
14+
golang.org/x/sys v0.4.0 // indirect
1515
google.golang.org/appengine v1.6.7 // indirect
1616
)
1717

@@ -22,7 +22,7 @@ require (
2222
github.com/golang/protobuf v1.5.2 // indirect
2323
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
2424
github.com/prometheus/client_model v0.3.0 // indirect
25-
github.com/prometheus/common v0.37.0 // indirect
25+
github.com/prometheus/common v0.39.0 // indirect
2626
google.golang.org/protobuf v1.28.1 // indirect
2727
)
2828

0 commit comments

Comments
 (0)