Skip to content

Commit 3db19e9

Browse files
bors[bot]eldruin
andauthored
Merge #65
65: Release 0.5.0 r=ryankurte a=eldruin Co-authored-by: Diego Barrios Romero <eldruin@gmail.com>
2 parents 6dfd6e3 + 984699c commit 3db19e9

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
branches: [ staging, trying, master ]
44
pull_request:
55

6-
name: Continuous integration
6+
name: CI
77

88
jobs:
99
ci-linux:

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic
7+
Versioning](https://semver.org/spec/v2.0.0.html).
8+
9+
## [Unreleased]
10+
11+
## [v0.5.0] - 2021-09-21
12+
13+
- Updated `nix` to version `0.22`.
14+
- Updated `bitflags` to version `1.3`.
15+
- Updated MSRV to version 1.46.0.
16+
17+
## v0.4.4 - 2020-12-02
18+
19+
The changelog for previous versions was not recorded.
20+
21+
[Unreleased]: https://github.com/rust-embedded/rust-i2cdev/compare/0.5.0...HEAD
22+
[v0.5.0]: https://github.com/rust-embedded/rust-i2cdev/compare/0.4.0...0.5.0
23+

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "i2cdev"
4-
version = "0.4.4"
4+
version = "0.5.0" # remember to update html_root_url
55
authors = ["Paul Osborne <osbpau@gmail.com>"]
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/rust-embedded/rust-i2cdev"
@@ -16,7 +16,7 @@ Provides API for safe access to Linux i2c device interface.
1616

1717
[dependencies]
1818
libc = "0.2"
19-
bitflags = "1"
19+
bitflags = "1.3"
2020
byteorder = "1"
2121
nix = "0.22"
2222

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
#![crate_name = "i2cdev"]
9898
#![crate_type = "lib"]
9999
#![deny(missing_docs)]
100+
#![doc(html_root_url = "https://docs.rs/i2cdev/0.5.0")]
100101

101102
#[macro_use]
102103
extern crate bitflags;

0 commit comments

Comments
 (0)