docs(core): prepare for release v2.3.0 (#1053)
This commit is contained in:
parent
f042926dd9
commit
474d5530ac
|
@ -8,22 +8,23 @@ It is possible to test the tool by `git-chglog --init` without overriding anythi
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Example for a new release "v2.2.0":
|
Example for a new release "v2.3.0":
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
# optional update tool by: go install github.com/git-chglog/git-chglog/cmd/git-chglog@latest
|
||||||
git checkout release
|
git checkout release
|
||||||
git pull
|
git pull
|
||||||
git fetch --tags
|
git fetch --tags
|
||||||
git checkout dev
|
git checkout dev
|
||||||
git pull upstream dev
|
git pull upstream dev
|
||||||
git checkout -b rel/prepare_for_release_v220
|
git checkout -b rel/prepare_for_release_v230
|
||||||
git-chglog --config .chglog/config_gobot.yml --no-case --next-tag v2.2.0 v2.1.1.. > .chglog/chglog_tmp.md
|
git-chglog --config .chglog/config_gobot.yml --no-case --next-tag v2.3.0 v2.2.0.. > .chglog/chglog_tmp.md
|
||||||
```
|
```
|
||||||
|
|
||||||
## Compare
|
## Compare
|
||||||
|
|
||||||
If unsure about any result of running git-chglog, just use:
|
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
|
## Manual adjustment
|
||||||
|
|
||||||
|
@ -43,24 +44,24 @@ An example for the following commits:
|
||||||
* build(style): adjust rule for golangci-lint
|
* build(style): adjust rule for golangci-lint
|
||||||
|
|
||||||
```md
|
```md
|
||||||
### build
|
### Build
|
||||||
|
|
||||||
* **style**: adjust rule for golangci-lint
|
* **style**: adjust rule for golangci-lint
|
||||||
|
|
||||||
### docs
|
### Docs
|
||||||
|
|
||||||
* **core**: usage of Kernel driver
|
* **core**: usage of Kernel driver
|
||||||
|
|
||||||
### i2c
|
### I2c
|
||||||
|
|
||||||
* **PCF8583**: added
|
* **PCF8583**: added
|
||||||
|
|
||||||
|
|
||||||
### gpio
|
### Gpio
|
||||||
|
|
||||||
* **HD44780**: fix wrong constants
|
* **HD44780**: fix wrong constants
|
||||||
|
|
||||||
### raspi
|
### Raspi
|
||||||
|
|
||||||
* **PWM**: refactor usage
|
* **PWM**: refactor usage
|
||||||
|
|
||||||
|
|
49
CHANGELOG.md
49
CHANGELOG.md
|
@ -1,6 +1,53 @@
|
||||||
# CHANGELOG
|
# 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)
|
## [v2.2.0](https://github.com/hybridgroup/gobot/compare/v2.1.1...v2.2.0) (2023-10-29)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue