Skip to content

Commit

Permalink
version: 0.11.1 -> 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM authored Mar 5, 2024
1 parent 56fbe64 commit 675f809
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.12.0] - 2024-03-04
### Added
- Added public methods to get the speed, `get_speed` and `get_height_and_speed`.
- Added a command line option to read the speed of the desk.

### Fixed
- Fixed the desk not stopping when requested during movement.
- Fixed the desk pausing during raising / lowering.

### Changed
- Heights in the configuration file are no longer allowed to be called "speed".

## [0.11.1] - 2024-01-13
### Fixed
- Fixed the desk stopping at inconsistent heights.
Expand Down Expand Up @@ -156,7 +168,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2020-09-07
- Initial release

[Unreleased]: https://github.com/newAM/idasen/compare/v0.11.1...HEAD
[Unreleased]: https://github.com/newAM/idasen/compare/v0.12.0...HEAD
[0.12.0]: https://github.com/newAM/idasen/compare/v0.11.1...v0.12.0
[0.11.1]: https://github.com/newAM/idasen/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/newAM/idasen/compare/v0.10.3...v0.11.0
[0.10.3]: https://github.com/newAM/idasen/compare/v0.10.2...v0.10.3
Expand Down
2 changes: 1 addition & 1 deletion idasen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ async def get_speed(self) -> float:

async def get_height_and_speed(self) -> Tuple[float, float]:
"""
Get a tuple of the desk height in meters and speed in meters per second.
Get the desk height in meters and speed in meters per second.
Returns:
Tuple of desk height in meters and speed in meters per second.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ target-version = ["py38"]
name = "idasen"
description = "ikea IDÅSEN desk API and CLI."
authors = ["Alex Martens <[email protected]>"]
version = "0.11.1"
version = "0.12.0"
license = "MIT"
readme = "README.rst"
repository = "https://github.com/newAM/idasen"
Expand Down

0 comments on commit 675f809

Please sign in to comment.