Skip to content

Commit 675f809

Browse files
authored
version: 0.11.1 -> 0.12.0
1 parent 56fbe64 commit 675f809

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.0] - 2024-03-04
9+
### Added
10+
- Added public methods to get the speed, `get_speed` and `get_height_and_speed`.
11+
- Added a command line option to read the speed of the desk.
12+
13+
### Fixed
14+
- Fixed the desk not stopping when requested during movement.
15+
- Fixed the desk pausing during raising / lowering.
16+
17+
### Changed
18+
- Heights in the configuration file are no longer allowed to be called "speed".
19+
820
## [0.11.1] - 2024-01-13
921
### Fixed
1022
- Fixed the desk stopping at inconsistent heights.
@@ -156,7 +168,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
156168
## [0.1.0] - 2020-09-07
157169
- Initial release
158170

159-
[Unreleased]: https://github.com/newAM/idasen/compare/v0.11.1...HEAD
171+
[Unreleased]: https://github.com/newAM/idasen/compare/v0.12.0...HEAD
172+
[0.12.0]: https://github.com/newAM/idasen/compare/v0.11.1...v0.12.0
160173
[0.11.1]: https://github.com/newAM/idasen/compare/v0.11.0...v0.11.1
161174
[0.11.0]: https://github.com/newAM/idasen/compare/v0.10.3...v0.11.0
162175
[0.10.3]: https://github.com/newAM/idasen/compare/v0.10.2...v0.10.3

idasen/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ async def get_speed(self) -> float:
428428

429429
async def get_height_and_speed(self) -> Tuple[float, float]:
430430
"""
431-
Get a tuple of the desk height in meters and speed in meters per second.
431+
Get the desk height in meters and speed in meters per second.
432432
433433
Returns:
434434
Tuple of desk height in meters and speed in meters per second.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ target-version = ["py38"]
66
name = "idasen"
77
description = "ikea IDÅSEN desk API and CLI."
88
authors = ["Alex Martens <[email protected]>"]
9-
version = "0.11.1"
9+
version = "0.12.0"
1010
license = "MIT"
1111
readme = "README.rst"
1212
repository = "https://github.com/newAM/idasen"

0 commit comments

Comments
 (0)