Skip to content

Commit

Permalink
Release 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
svartalf committed Nov 26, 2019
1 parent 452897a commit c41c619
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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).

## [0.7.5] - 2019-11-26
### Fixed

- Handling missing `energy_full_design` source files for Linux [#40](https://github.com/svartalf/rust-battery/issues/40)

## [0.7.4] - 2019-06-03
### Fixed
- `Manager::refresh` method in Linux implementation checks if battery folder is exists [#29](https://github.com/svartalf/rust-battery/issues/29)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Latest Version](https://img.shields.io/crates/v/battery.svg)](https://crates.io/crates/battery)
[![Latest Version](https://docs.rs/battery/badge.svg)](https://docs.rs/battery)
[![dependency status](https://deps.rs/crate/battery/0.7.4/status.svg)](https://deps.rs/crate/battery/0.7.4)
[![dependency status](https://deps.rs/crate/battery/0.7.5/status.svg)](https://deps.rs/crate/battery/0.7.5)
[![Build Status](https://github.com/svartalf/rust-battery/workflows/Continuous%20integration/badge.svg)](https://github.com/svartalf/rust-battery/actions?workflow=Continuous+integration)
![Minimum rustc version](https://img.shields.io/badge/rustc-1.32+-yellow.svg)
![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg)
Expand Down Expand Up @@ -49,7 +49,7 @@ Add the following line into a `Cargo.toml`:

```toml
[dependencies]
battery = "0.7.4"
battery = "0.7.5"
```

## Examples
Expand Down
4 changes: 2 additions & 2 deletions battery-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "battery-ffi"
version = "0.7.4" # remember to update html_root_url
version = "0.7.5" # remember to update html_root_url
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "FFI bindings for battery crate"
Expand All @@ -24,7 +24,7 @@ crate-type = ["cdylib"]
default = ["cbindgen"]

[dependencies.battery]
version = "0.7.4"
version = "^0.7"
path = "../battery"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion battery-ffi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Latest Version](https://img.shields.io/crates/v/battery-ffi.svg)](https://crates.io/crates/battery-ffi)
[![Latest Version](https://docs.rs/battery-ffi/badge.svg)](https://docs.rs/battery-ffi)
[![Build Status](https://travis-ci.org/svartalf/rust-battery.svg?branch=master)](https://travis-ci.org/svartalf/rust-battery)
[![dependency status](https://deps.rs/crate/battery-ffi/0.7.4/status.svg)](https://deps.rs/crate/battery-ffi/0.7.4)
[![dependency status](https://deps.rs/crate/battery-ffi/0.7.5/status.svg)](https://deps.rs/crate/battery-ffi/0.7.5)
![Minimum rustc version](https://img.shields.io/badge/rustc-1.32+-yellow.svg)
![Apache 2.0 OR MIT licensed](https://img.shields.io/badge/license-Apache2.0%2FMIT-blue.svg)
[![backers](https://opencollective.com/rust-battery/tiers/backer/badge.svg?label=backer&color=brightgreen)](https://opencollective.com/rust-battery)
Expand Down
2 changes: 1 addition & 1 deletion battery-ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
//!
//! Also, check the `examples/` directory in the repository for examples with C and Python.

#![doc(html_root_url = "https://docs.rs/battery-ffi/0.7.4")]
#![doc(html_root_url = "https://docs.rs/battery-ffi/0.7.5")]
#![allow(clippy::missing_safety_doc)]

// cbindgen==0.8.0 fails to export typedefs for opaque pointers
Expand Down
2 changes: 1 addition & 1 deletion battery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "battery"
version = "0.7.4"
version = "0.7.5" # remember to update html_root_url
authors = ["svartalf <[email protected]>"]
edition = "2018"
description = "Cross-platform information about the notebook batteries"
Expand Down
2 changes: 1 addition & 1 deletion battery/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#![deny(unused)]
#![deny(unstable_features)]
#![deny(bare_trait_objects)]
#![doc(html_root_url = "https://docs.rs/battery/0.7.4")]
#![doc(html_root_url = "https://docs.rs/battery/0.7.5")]

#[macro_use]
extern crate cfg_if;
Expand Down

0 comments on commit c41c619

Please sign in to comment.