Skip to content

Commit

Permalink
chore: Release pwm-pca9685 version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eldruin committed Apr 5, 2024
1 parent 8d85129 commit 3753a8c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [1.0.0] - 2024-04-05

### Added
- Added `Display`, `Error` and common trait implementations for `Error<E>`.
- Added common trait implementations for types.
Expand Down Expand Up @@ -66,7 +68,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
This is the initial release to crates.io. All changes will be documented in this CHANGELOG.

<!-- next-url -->
[Unreleased]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.3.1...HEAD
[Unreleased]: https://github.com/eldruin/pwm-pca9685-rs/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.3.1...v1.0.0
[0.3.1]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/eldruin/pwm-pca9685-rs/compare/v0.1.2...v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pwm-pca9685"
version = "0.3.1"
version = "1.0.0"
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
repository = "https://github.com/eldruin/pwm-pca9685-rs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ The same settings, but async with the [Embassy](https://embassy.dev/) framework

```toml
# Cargo.toml
pwm-pca9685 = { version = "0.3.1", features = ["async"] }
pwm-pca9685 = { version = "1.0.0", features = ["async"] }
```

```rust
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
//!
//! Enable the `async` feature in your `Cargo.toml`:
//! ```toml
//! pwm-pca9685 = { version = "0.3.1", features = ["async"] }
//! pwm-pca9685 = { version = "1.0.0", features = ["async"] }
//! ```
//! - Set a PWM frequency of 60 Hz (corresponds to a value of 100 for the
//! prescale).
Expand Down

0 comments on commit 3753a8c

Please sign in to comment.