Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
branches: [ staging, trying, master ]
pull_request:

name: Continuous integration
name: CI

jobs:
ci-linux:
Expand Down
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Changelog

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).

## [Unreleased]

## [v0.5.0] - 2021-09-21

- Updated `nix` to version `0.22`.
- Updated `bitflags` to version `1.3`.
- Updated MSRV to version 1.46.0.

## v0.4.4 - 2020-12-02

The changelog for previous versions was not recorded.

[Unreleased]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.0...HEAD
[v0.5.0]: https://github.com/rust-embedded/rust-i2cdev/compare/0.4.0...0.5.0

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "i2cdev"
version = "0.4.4"
version = "0.5.0" # remember to update html_root_url
authors = ["Paul Osborne <[email protected]>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rust-embedded/rust-i2cdev"
Expand All @@ -16,7 +16,7 @@ Provides API for safe access to Linux i2c device interface.

[dependencies]
libc = "0.2"
bitflags = "1"
bitflags = "1.3"
byteorder = "1"
nix = "0.22"

Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
#![crate_name = "i2cdev"]
#![crate_type = "lib"]
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/i2cdev/0.5.0")]

#[macro_use]
extern crate bitflags;
Expand Down