docs(core): prepare for release v2.2.0 (#1022)

This commit is contained in:
Thomas Kohler 2023-10-30 17:36:05 +01:00 committed by GitHub
parent 693cbf158d
commit 24f064568c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 61 additions and 6 deletions

View File

@ -8,7 +8,7 @@ It is possible to test the tool by `git-chglog --init` without overriding anythi
## Usage
Example for a new release "v2.1.1":
Example for a new release "v2.2.0":
```sh
git checkout release
@ -16,14 +16,14 @@ git pull
git fetch --tags
git checkout dev
git pull upstream dev
git checkout -b rel/prepare_for_release_v211
git-chglog --config .chglog/config_gobot.yml --no-case --next-tag v2.1.1 v2.1.0.. > .chglog/chglog_tmp.md
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
```
## Compare
If unsure about any result of running git-chglog, just use:
`git log --since=2023-05-28 --pretty="- %s"`
`git log --since=2023-07-07 --pretty="- %s"`
## Manual adjustment

View File

@ -5,7 +5,7 @@ info:
repository_url: https://github.com/hybridgroup/gobot
options:
header:
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:?\\s(.*)$"
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\,\\-\\*\\s]*)\\))?\\:?\\s(.*)$"
pattern_maps:
- Type
- Scope

View File

@ -1,6 +1,61 @@
# CHANGELOG
## [Unreleased](https://github.com/hybridgroup/gobot/compare/v2.1.1...HEAD)
## [Unreleased](https://github.com/hybridgroup/gobot/compare/v2.2.0...HEAD)
## [v2.2.0](https://github.com/hybridgroup/gobot/compare/v2.1.1...v2.2.0) (2023-10-29)
### Adaptors
* **PWM:** fix wrong duty cycle after kill program ([#994](https://github.com/hybridgroup/gobot/issues/994))
### Beaglebone
* **doc:** fix preceding typo ([#985](https://github.com/hybridgroup/gobot/issues/985))
### Build
* **deps:** module update ([#992](https://github.com/hybridgroup/gobot/issues/992))
* **go, deps:** switch to Go 1.19 and update modules ([#1008](https://github.com/hybridgroup/gobot/issues/1008))
* **style:** switch to gofumpt and add linters ([#1009](https://github.com/hybridgroup/gobot/issues/1009))
### Doc
* **roadmap:** remove file ROADMAP.md after creating issues ([#1005](https://github.com/hybridgroup/gobot/issues/1005))
### Dragonboard
* fix example and documentation ([#977](https://github.com/hybridgroup/gobot/issues/977))
### Gpio
* **hcsr04:** add driver for ultrasonic ranging module ([#1012](https://github.com/hybridgroup/gobot/issues/1012))
### I2c
* **PCA9685, adafruit, adafruit2327, adafruit2348:** clean up architecture and fix init ([#1021](https://github.com/hybridgroup/gobot/issues/1021))
### Jetson
* **PWM:** fix set period ([#1019](https://github.com/hybridgroup/gobot/issues/1019))
### Joystick
* **core:** replace sdl with 0xcafed00d/joystick package ([#988](https://github.com/hybridgroup/gobot/issues/988))
### Sphero
* Add support for calibration
### System
* **gpio:** add edge polling function ([#1015](https://github.com/hybridgroup/gobot/issues/1015))
### Test
* **all:** substitude assert.Nil by assert.NoError if useful ([#1016](https://github.com/hybridgroup/gobot/issues/1016))
* **all:** substitude assert.Error by assert.ErrorContains ([#1014](https://github.com/hybridgroup/gobot/issues/1014), [#1011](https://github.com/hybridgroup/gobot/issues/1011))
* **all:** switch to test package stretchr testify ([#1006](https://github.com/hybridgroup/gobot/issues/1006))
* **gpio, aio:** cleanup helper_test ([#1018](https://github.com/hybridgroup/gobot/issues/1018))
## [v2.1.1](https://github.com/hybridgroup/gobot/compare/v2.1.0...v2.1.1) (2023-07-07)