Skip to content

Commit

Permalink
docs(core): prepare for release v2.3.0 (hybridgroup#1053)
Browse files Browse the repository at this point in the history
  • Loading branch information
gen2thomas authored Jan 7, 2024
1 parent f042926 commit 474d553
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 10 deletions.
19 changes: 10 additions & 9 deletions .chglog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down
49 changes: 48 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down

0 comments on commit 474d553

Please sign in to comment.