File tree Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 3
3
branches : [ staging, trying, master ]
4
4
pull_request :
5
5
6
- name : Continuous integration
6
+ name : CI
7
7
8
8
jobs :
9
9
ci-linux :
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " i2cdev"
4
- version = " 0.4.4 "
4
+ version = " 0.5.0 " # remember to update html_root_url
5
5
authors = [" Paul Osborne <osbpau@gmail.com>" ]
6
6
license = " MIT/Apache-2.0"
7
7
repository = " https://github.com/rust-embedded/rust-i2cdev"
@@ -16,7 +16,7 @@ Provides API for safe access to Linux i2c device interface.
16
16
17
17
[dependencies ]
18
18
libc = " 0.2"
19
- bitflags = " 1"
19
+ bitflags = " 1.3 "
20
20
byteorder = " 1"
21
21
nix = " 0.22"
22
22
Original file line number Diff line number Diff line change 97
97
#![ crate_name = "i2cdev" ]
98
98
#![ crate_type = "lib" ]
99
99
#![ deny( missing_docs) ]
100
+ #![ doc( html_root_url = "https://docs.rs/i2cdev/0.5.0" ) ]
100
101
101
102
#[ macro_use]
102
103
extern crate bitflags;
You can’t perform that action at this time.
0 commit comments