Skip to content

Commit

Permalink
docs(core): prepare for release v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gen2thomas committed Oct 29, 2023
1 parent 693cbf1 commit 6b14a45
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .chglog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ 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
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

Expand Down
2 changes: 1 addition & 1 deletion .chglog/config_gobot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
57 changes: 56 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down

0 comments on commit 6b14a45

Please sign in to comment.