Skip to content

Commit

Permalink
chore(release): 0.2.0 [skip ci]
Browse files Browse the repository at this point in the history
## [0.2.0](v0.1.5...v0.2.0) (2022-05-22)

### Features

* add getters for some field for device and led ([4a30763](4a30763))
* add serde feature implementation to able to serialize/deserialize ([bdb7f09](bdb7f09))

### Continuous Integration

* use locked lock file ([6cd535d](6cd535d))

### Code Refactoring

* replace CommoError generation with custom_error! macro ([b5c6762](b5c6762))

### Build System

* fix build for docs.rs ([b7073d2](b7073d2))
* update wsl+docker execution scripts ([ccb1c15](ccb1c15))
  • Loading branch information
semantic-release-bot committed May 22, 2022
1 parent b7073d2 commit a7a509c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## [0.2.0](https://github.com/meskill/mystic-light-sdk/compare/v0.1.5...v0.2.0) (2022-05-22)


### Features

* add getters for some field for device and led ([4a30763](https://github.com/meskill/mystic-light-sdk/commit/4a3076312bf8716b7bf5a781585b091f9958aaa4))
* add serde feature implementation to able to serialize/deserialize ([bdb7f09](https://github.com/meskill/mystic-light-sdk/commit/bdb7f091e5110177df3d8af8c6b99af67023e67e))


### Continuous Integration

* use locked lock file ([6cd535d](https://github.com/meskill/mystic-light-sdk/commit/6cd535d4bff1079c9d441805c1129fc6aa11db69))


### Code Refactoring

* replace CommoError generation with custom_error! macro ([b5c6762](https://github.com/meskill/mystic-light-sdk/commit/b5c6762507dd0163303d9b8ff7dd3f92ce223eed))


### Build System

* fix build for docs.rs ([b7073d2](https://github.com/meskill/mystic-light-sdk/commit/b7073d2906e5c21a8d21b0cd5689e91756f19427))
* update wsl+docker execution scripts ([ccb1c15](https://github.com/meskill/mystic-light-sdk/commit/ccb1c151fb1e8f29deaba5dd2b8d8a68c86f29ae))

### [0.1.5](https://github.com/meskill/mystic-light-sdk/compare/v0.1.4...v0.1.5) (2022-04-26)


Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mystic_light_sdk"
version = "0.1.5"
version = "0.2.0"
edition = "2021"
authors = ["meskill"]
description = "A Rust wrapper for the MysticLight SDK (MSI hardware and peripherals)"
Expand Down Expand Up @@ -36,4 +36,4 @@ serde = ["dep:serde"]

[[example]]
name = "serde_serialization"
required-features = ["serde"]
required-features = ["serde"]
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@ fn main() -> std::io::Result<()> {

- in case of any problems with conversion from and into WinApi types

## Features

### serde

Enables [serde](https://crates.io/crates/serde) serialization/deserialization for some of the sdk structs

## Troubleshooting

### Timeout error on initialization
Expand Down

0 comments on commit a7a509c

Please sign in to comment.