Skip to content

Commit

Permalink
Bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
hasumikin committed Dec 15, 2021
1 parent 60a7418 commit 1091796
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Change log

## 0.9.9 on 2021/12/15
### Supports direct scan👏

- Some keyboards support **direct scan**. e.g. https://www.sho-k.co.uk/tech/1246.html
Now you can configure it as follow:

```ruby
kbd.set_scan_mode = :direct
kbd.init_pins(
[],
[ 8, 27, 28, 29, 9, 26 ]
)
```
or

```ruby
kbd.init_direct_pins(
[ 8, 27, 28, 29, 9, 26 ]
)
```

## 0.9.8 on 2021/12/10
### RotaryEncoder enhancement
- Multiple encoders can be configured on a unit🎛
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pico_sdk_init()

execute_process (COMMAND date +%Y%m%d OUTPUT_VARIABLE CMAKE_BUILDDATE OUTPUT_STRIP_TRAILING_WHITESPACE)
execute_process (COMMAND git rev-parse --short HEAD OUTPUT_VARIABLE CMAKE_REVISION OUTPUT_STRIP_TRAILING_WHITESPACE)
set (PRK_VERSION 0.9.8)
set (PRK_VERSION 0.9.9)
set (PRK_BUILDDATE ${CMAKE_BUILDDATE})
set (PRK_REVISION ${CMAKE_REVISION})
configure_file ("${CMAKE_CURRENT_SOURCE_DIR}/src/version.h.in" "${CMAKE_CURRENT_SOURCE_DIR}/src/version.h")
Expand Down

0 comments on commit 1091796

Please sign in to comment.