Skip to content

Commit

Permalink
Merge pull request #16 from avakarev/release-1.1.2
Browse files Browse the repository at this point in the history
Release 1.1.2
  • Loading branch information
avakarev authored May 3, 2023
2 parents 9bc25e9 + 16f1789 commit 1666bb4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.1.2] - 2023-05-04
### Changed
- Bump go 1.19 => 1.20
- Bump go deps
Expand All @@ -26,7 +28,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial implementation

[Unreleased]: https://github.com/avakarev/lidl-connect-exporter/compare/v1.1.1...HEAD
[Unreleased]: https://github.com/avakarev/lidl-connect-exporter/compare/v1.1.2...HEAD
[1.1.2]: https://github.com/avakarev/lidl-connect-exporter/compare/1.1.1...1.1.2
[1.1.1]: https://github.com/avakarev/lidl-connect-exporter/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/avakarev/lidl-connect-exporter/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/avakarev/lidl-connect-exporter/releases/tag/v1.0.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ There are pre-built docker images, so you can run it
either with docker:

```
docker run --env LIDL_CONNECT_USERNAME=015123456789 --env LIDL_CONNECT_PASSWORD=password ghcr.io/avakarev/lidl-connect-exporter:v1.1.1
docker run --env LIDL_CONNECT_USERNAME=015123456789 --env LIDL_CONNECT_PASSWORD=password ghcr.io/avakarev/lidl-connect-exporter:v1.1.2
```

or with docker-compose:
Expand All @@ -19,7 +19,7 @@ version: "3.7"
services:
lidl_connect_exporter:
image: ghcr.io/avakarev/lidl-connect-exporter:v1.1.1
image: ghcr.io/avakarev/lidl-connect-exporter:v1.1.2
container_name: lidl-connect-exporter
expose:
- 9100
Expand Down
2 changes: 1 addition & 1 deletion cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func meterTariff() {

func main() {
logutil.MustInit()
log.Info().Fields(buildmeta.Fields()).Msg("build meta")
log.Info().Str("ref", buildmeta.Ref).Str("commit", buildmeta.Commit).Msg("build meta")

client = lidlconnect.DefaultClient()

Expand Down

0 comments on commit 1666bb4

Please sign in to comment.