Skip to content

Commit 24f0645

Browse files
authored
docs(core): prepare for release v2.2.0 (#1022)
1 parent 693cbf1 commit 24f0645

File tree

3 files changed

+61
-6
lines changed

3 files changed

+61
-6
lines changed

.chglog/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ It is possible to test the tool by `git-chglog --init` without overriding anythi
88

99
## Usage
1010

11-
Example for a new release "v2.1.1":
11+
Example for a new release "v2.2.0":
1212

1313
```sh
1414
git checkout release
1515
git pull
1616
git fetch --tags
1717
git checkout dev
1818
git pull upstream dev
19-
git checkout -b rel/prepare_for_release_v211
20-
git-chglog --config .chglog/config_gobot.yml --no-case --next-tag v2.1.1 v2.1.0.. > .chglog/chglog_tmp.md
19+
git checkout -b rel/prepare_for_release_v220
20+
git-chglog --config .chglog/config_gobot.yml --no-case --next-tag v2.2.0 v2.1.1.. > .chglog/chglog_tmp.md
2121
```
2222

2323
## Compare
2424

2525
If unsure about any result of running git-chglog, just use:
26-
`git log --since=2023-05-28 --pretty="- %s"`
26+
`git log --since=2023-07-07 --pretty="- %s"`
2727

2828
## Manual adjustment
2929

.chglog/config_gobot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ info:
55
repository_url: https://github.com/hybridgroup/gobot
66
options:
77
header:
8-
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:?\\s(.*)$"
8+
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\,\\-\\*\\s]*)\\))?\\:?\\s(.*)$"
99
pattern_maps:
1010
- Type
1111
- Scope

CHANGELOG.md

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,61 @@
11
# CHANGELOG
22

3-
## [Unreleased](https://github.com/hybridgroup/gobot/compare/v2.1.1...HEAD)
3+
## [Unreleased](https://github.com/hybridgroup/gobot/compare/v2.2.0...HEAD)
4+
5+
## [v2.2.0](https://github.com/hybridgroup/gobot/compare/v2.1.1...v2.2.0) (2023-10-29)
6+
7+
### Adaptors
8+
9+
* **PWM:** fix wrong duty cycle after kill program ([#994](https://github.com/hybridgroup/gobot/issues/994))
10+
11+
### Beaglebone
12+
13+
* **doc:** fix preceding typo ([#985](https://github.com/hybridgroup/gobot/issues/985))
14+
15+
### Build
16+
17+
* **deps:** module update ([#992](https://github.com/hybridgroup/gobot/issues/992))
18+
* **go, deps:** switch to Go 1.19 and update modules ([#1008](https://github.com/hybridgroup/gobot/issues/1008))
19+
* **style:** switch to gofumpt and add linters ([#1009](https://github.com/hybridgroup/gobot/issues/1009))
20+
21+
### Doc
22+
23+
* **roadmap:** remove file ROADMAP.md after creating issues ([#1005](https://github.com/hybridgroup/gobot/issues/1005))
24+
25+
### Dragonboard
26+
27+
* fix example and documentation ([#977](https://github.com/hybridgroup/gobot/issues/977))
28+
29+
### Gpio
30+
31+
* **hcsr04:** add driver for ultrasonic ranging module ([#1012](https://github.com/hybridgroup/gobot/issues/1012))
32+
33+
### I2c
34+
35+
* **PCA9685, adafruit, adafruit2327, adafruit2348:** clean up architecture and fix init ([#1021](https://github.com/hybridgroup/gobot/issues/1021))
36+
37+
### Jetson
38+
39+
* **PWM:** fix set period ([#1019](https://github.com/hybridgroup/gobot/issues/1019))
40+
41+
### Joystick
42+
43+
* **core:** replace sdl with 0xcafed00d/joystick package ([#988](https://github.com/hybridgroup/gobot/issues/988))
44+
45+
### Sphero
46+
47+
* Add support for calibration
48+
49+
### System
50+
51+
* **gpio:** add edge polling function ([#1015](https://github.com/hybridgroup/gobot/issues/1015))
52+
53+
### Test
54+
55+
* **all:** substitude assert.Nil by assert.NoError if useful ([#1016](https://github.com/hybridgroup/gobot/issues/1016))
56+
* **all:** substitude assert.Error by assert.ErrorContains ([#1014](https://github.com/hybridgroup/gobot/issues/1014), [#1011](https://github.com/hybridgroup/gobot/issues/1011))
57+
* **all:** switch to test package stretchr testify ([#1006](https://github.com/hybridgroup/gobot/issues/1006))
58+
* **gpio, aio:** cleanup helper_test ([#1018](https://github.com/hybridgroup/gobot/issues/1018))
459

560
## [v2.1.1](https://github.com/hybridgroup/gobot/compare/v2.1.0...v2.1.1) (2023-07-07)
661

0 commit comments

Comments
 (0)