From 474d5530acda3fac1e0ca35dae0356a3273b5b2c Mon Sep 17 00:00:00 2001 From: Thomas Kohler Date: Sun, 7 Jan 2024 10:49:54 +0100 Subject: [PATCH] docs(core): prepare for release v2.3.0 (#1053) --- .chglog/README.md | 19 +++++++++--------- CHANGELOG.md | 49 ++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 58 insertions(+), 10 deletions(-) diff --git a/.chglog/README.md b/.chglog/README.md index 7c81e3bd..48f775df 100644 --- a/.chglog/README.md +++ b/.chglog/README.md @@ -8,22 +8,23 @@ It is possible to test the tool by `git-chglog --init` without overriding anythi ## Usage -Example for a new release "v2.2.0": +Example for a new release "v2.3.0": ```sh +# optional update tool by: go install github.com/git-chglog/git-chglog/cmd/git-chglog@latest git checkout release git pull git fetch --tags git checkout dev git pull upstream dev -git checkout -b rel/prepare_for_release_v220 -git-chglog --config .chglog/config_gobot.yml --no-case --next-tag v2.2.0 v2.1.1.. > .chglog/chglog_tmp.md +git checkout -b rel/prepare_for_release_v230 +git-chglog --config .chglog/config_gobot.yml --no-case --next-tag v2.3.0 v2.2.0.. > .chglog/chglog_tmp.md ``` ## Compare If unsure about any result of running git-chglog, just use: -`git log --since=2023-07-07 --pretty="- %s"` +`git log --since=2023-10-30 --pretty="- %s"` ## Manual adjustment @@ -43,24 +44,24 @@ An example for the following commits: * build(style): adjust rule for golangci-lint ```md -### build +### Build * **style**: adjust rule for golangci-lint -### docs +### Docs * **core**: usage of Kernel driver -### i2c +### I2c * **PCF8583**: added -### gpio +### Gpio * **HD44780**: fix wrong constants -### raspi +### Raspi * **PWM**: refactor usage diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fd63f0a..5576ac2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,53 @@ # CHANGELOG -## [Unreleased](https://github.com/hybridgroup/gobot/compare/v2.2.0...HEAD) +## [Unreleased](https://github.com/hybridgroup/gobot/compare/v2.3.0...HEAD) + +## [v2.3.0](https://github.com/hybridgroup/gobot/compare/v2.2.0...v2.3.0) (2024-01-06) + +### Adaptors + +* **pwm:** introduce scale option for servo ([#1046](https://github.com/hybridgroup/gobot/issues/1046)) +* **analogpins:** add a generic analog pin adaptor ([#1041](https://github.com/hybridgroup/gobot/issues/1041)) + +### Aio + +* fix data race in AnalogSensorDriver ([#1024](https://github.com/hybridgroup/gobot/issues/1024)) +* **all:** introduce functional options ([#1039](https://github.com/hybridgroup/gobot/issues/1039)) +* **analog sensor:** fix deadlock in cyclic reading ([#1042](https://github.com/hybridgroup/gobot/issues/1042)) +* **thermalzone:** add driver for read a thermalzone from system ([#1040](https://github.com/hybridgroup/gobot/issues/1040)) + +### Build + +* **go, deps:** update modules ([#1047](https://github.com/hybridgroup/gobot/issues/1047), [#1052](https://github.com/hybridgroup/gobot/issues/1052)) + +### Doc + +* **test:** use -race for tests by default ([#1035](https://github.com/hybridgroup/gobot/issues/1035)) + +### Gpio + +* fix data race in StepperDriver ([#1029](https://github.com/hybridgroup/gobot/issues/1029)) +* fix data race in PIRMotionDriver ([#1028](https://github.com/hybridgroup/gobot/issues/1028)) +* fix data race in ButtonDriver ([#1027](https://github.com/hybridgroup/gobot/issues/1027)) +* fix data race in EasyDriver ([#1025](https://github.com/hybridgroup/gobot/issues/1025)) +* **all:** introduce functional options ([#1045](https://github.com/hybridgroup/gobot/issues/1045)) + +### I2c + +* **core:** fix problems with usage of uintptr ([#1033](https://github.com/hybridgroup/gobot/issues/1033)) + +### Lint + +* **all:** fix issues of errorlint etc ([#1037](https://github.com/hybridgroup/gobot/issues/1037)) +* **all:** switch to 1.55.2 and adjust linter issues ([#1036](https://github.com/hybridgroup/gobot/issues/1036)) + +### Ollie + +* **test:** fix data race in test ([#1034](https://github.com/hybridgroup/gobot/issues/1034)) + +### Raspi + +* **pwm:** add support for sysfs and fix pi-blaster ([#1048](https://github.com/hybridgroup/gobot/issues/1048)) ## [v2.2.0](https://github.com/hybridgroup/gobot/compare/v2.1.1...v2.2.0) (2023-10-29)