bme680-rust/CHANGELOG.md

28 lines
1.5 KiB
Markdown
Raw Normal View History

2018-11-12 19:54:09 +00:00
# Change Log
2019-03-19 17:13:50 +00:00
## [0.4.3](https://github.com/marcelbuesing/bme680/tree/0.4.3) (2018-03-19)
[Full Changelog](https://github.com/marcelbuesing/bme680/compare/0.4.2..0.4.3)
- @caemor replaced non no_std compatible `f32.signum` and `f32.abs`. Fixes #14.
2019-01-05 19:28:14 +00:00
## [0.4.2](https://github.com/marcelbuesing/bme680/tree/0.4.2) (2018-01-05)
[Full Changelog](https://github.com/marcelbuesing/bme680/compare/0.4.1..0.4.2)
- `get_sensor_settings` now properly returns the configured temperature offset, closes #12.
Thank you @nickbroon for reporting this and @caemor for the feedback.
2018-11-12 19:54:09 +00:00
2019-01-05 19:28:14 +00:00
## [0.4.1](https://github.com/marcelbuesing/bme680/tree/0.4.1) (2018-12-22)
2018-12-22 09:05:03 +00:00
[Full Changelog](https://github.com/marcelbuesing/bme680/compare/0.4.0..0.4.1)
- `with_temperature_offset` now uses `f32` instead of`i32`. Fixed calulation for non negative offsets.
2018-12-18 18:28:10 +00:00
## [0.4.0](https://github.com/marcelbuesing/bme680/tree/0.4.0) (2018-12-18)
[Full Changelog](https://github.com/marcelbuesing/bme680/compare/0.3.2..0.4.0)
- Add `with_temperature_offset` to `SettingsBuilder` for specifying a temperature offset for the temperature calculation.
2018-11-12 19:54:09 +00:00
## [0.3.2](https://github.com/marcelbuesing/bme680/tree/0.3.2) (2018-11-12)
[Full Changelog](https://github.com/marcelbuesing/bme680/compare/0.3.1..0.3.2)
- Add screenshots to documentation
- Removed Cargo.lock
- Update dependencies:
- env-logger to `v0.6`
- influent to `v0.5`
**Merged pull requests:**
- Use no_std in reading temperatures example [\#4](https://github.com/marcelbuesing/bme680/pull/4) ([chrysn](https://github.com/chrysn))