Skip to content

Commit 474d553

Browse files
authored
docs(core): prepare for release v2.3.0 (#1053)
1 parent f042926 commit 474d553

File tree

2 files changed

+58
-10
lines changed

2 files changed

+58
-10
lines changed

.chglog/README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,23 @@ 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.2.0":
11+
Example for a new release "v2.3.0":
1212

1313
```sh
14+
# optional update tool by: go install github.com/git-chglog/git-chglog/cmd/git-chglog@latest
1415
git checkout release
1516
git pull
1617
git fetch --tags
1718
git checkout dev
1819
git pull upstream dev
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
20+
git checkout -b rel/prepare_for_release_v230
21+
git-chglog --config .chglog/config_gobot.yml --no-case --next-tag v2.3.0 v2.2.0.. > .chglog/chglog_tmp.md
2122
```
2223

2324
## Compare
2425

2526
If unsure about any result of running git-chglog, just use:
26-
`git log --since=2023-07-07 --pretty="- %s"`
27+
`git log --since=2023-10-30 --pretty="- %s"`
2728

2829
## Manual adjustment
2930

@@ -43,24 +44,24 @@ An example for the following commits:
4344
* build(style): adjust rule for golangci-lint
4445

4546
```md
46-
### build
47+
### Build
4748

4849
* **style**: adjust rule for golangci-lint
4950

50-
### docs
51+
### Docs
5152

5253
* **core**: usage of Kernel driver
5354

54-
### i2c
55+
### I2c
5556

5657
* **PCF8583**: added
5758

5859

59-
### gpio
60+
### Gpio
6061

6162
* **HD44780**: fix wrong constants
6263

63-
### raspi
64+
### Raspi
6465

6566
* **PWM**: refactor usage
6667

CHANGELOG.md

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

3-
## [Unreleased](https://github.com/hybridgroup/gobot/compare/v2.2.0...HEAD)
3+
## [Unreleased](https://github.com/hybridgroup/gobot/compare/v2.3.0...HEAD)
4+
5+
## [v2.3.0](https://github.com/hybridgroup/gobot/compare/v2.2.0...v2.3.0) (2024-01-06)
6+
7+
### Adaptors
8+
9+
* **pwm:** introduce scale option for servo ([#1046](https://github.com/hybridgroup/gobot/issues/1046))
10+
* **analogpins:** add a generic analog pin adaptor ([#1041](https://github.com/hybridgroup/gobot/issues/1041))
11+
12+
### Aio
13+
14+
* fix data race in AnalogSensorDriver ([#1024](https://github.com/hybridgroup/gobot/issues/1024))
15+
* **all:** introduce functional options ([#1039](https://github.com/hybridgroup/gobot/issues/1039))
16+
* **analog sensor:** fix deadlock in cyclic reading ([#1042](https://github.com/hybridgroup/gobot/issues/1042))
17+
* **thermalzone:** add driver for read a thermalzone from system ([#1040](https://github.com/hybridgroup/gobot/issues/1040))
18+
19+
### Build
20+
21+
* **go, deps:** update modules ([#1047](https://github.com/hybridgroup/gobot/issues/1047), [#1052](https://github.com/hybridgroup/gobot/issues/1052))
22+
23+
### Doc
24+
25+
* **test:** use -race for tests by default ([#1035](https://github.com/hybridgroup/gobot/issues/1035))
26+
27+
### Gpio
28+
29+
* fix data race in StepperDriver ([#1029](https://github.com/hybridgroup/gobot/issues/1029))
30+
* fix data race in PIRMotionDriver ([#1028](https://github.com/hybridgroup/gobot/issues/1028))
31+
* fix data race in ButtonDriver ([#1027](https://github.com/hybridgroup/gobot/issues/1027))
32+
* fix data race in EasyDriver ([#1025](https://github.com/hybridgroup/gobot/issues/1025))
33+
* **all:** introduce functional options ([#1045](https://github.com/hybridgroup/gobot/issues/1045))
34+
35+
### I2c
36+
37+
* **core:** fix problems with usage of uintptr ([#1033](https://github.com/hybridgroup/gobot/issues/1033))
38+
39+
### Lint
40+
41+
* **all:** fix issues of errorlint etc ([#1037](https://github.com/hybridgroup/gobot/issues/1037))
42+
* **all:** switch to 1.55.2 and adjust linter issues ([#1036](https://github.com/hybridgroup/gobot/issues/1036))
43+
44+
### Ollie
45+
46+
* **test:** fix data race in test ([#1034](https://github.com/hybridgroup/gobot/issues/1034))
47+
48+
### Raspi
49+
50+
* **pwm:** add support for sysfs and fix pi-blaster ([#1048](https://github.com/hybridgroup/gobot/issues/1048))
451

552
## [v2.2.0](https://github.com/hybridgroup/gobot/compare/v2.1.1...v2.2.0) (2023-10-29)
653

0 commit comments

Comments
 (0)