Skip to content

Commit d39c765

Browse files
committedFeb 3, 2020
Bumps the version to 0.13.0 and updates the NEWS file.
1 parent 0d85ecf commit d39c765

File tree

4 files changed

+56
-3
lines changed

4 files changed

+56
-3
lines changed
 

‎Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A feature-rich and resource-friendly replacement for i3status, wr
44
repository = "https://github.com/greshake/i3status-rust/"
55
readme = "README.md"
66
license = "GPLv3"
7-
version = "0.12.0"
7+
version = "0.13.0"
88
authors = ["Kai Greshake <development@kai-greshake.de>",
99
"Contributors on GitHub (https://github.com/greshake/i3status-rust/graphs/contributors)"]
1010
edition = "2018"

‎NEWS.md

+53
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
# i3status-rust 0.13.0
2+
3+
## New Blocks and Features
4+
5+
* The Net block now takes a `use_bits` parameter to display speeds in bit-based
6+
instead of byte-based units. (#496 by @hlmtre)
7+
8+
* The Pacman block now supports a `format` parameter. (#473 by @ifreund)
9+
10+
* The top-level config now takes a `scrolling` parameter that can be used to
11+
turn on `"natural"` mouse scrolling in the bar. (#494 by @bakhtiyarneyman)
12+
13+
* The Brightness block will now fall back to using D-Bus for changing the
14+
brightness if it cannot modify it via `sysfs`. (#499 by @majewsky)
15+
16+
* The Bluetooth block now allows for setting a text `label` parameter to keep
17+
track of devices. (#528 by @jeffw387)
18+
19+
## Bug Fixes and Improvements
20+
21+
* Fixes a panic that could sometimes manifest when restarting Pulseaudio. (#484
22+
by @ammgws)
23+
24+
* Fixes errors in the Pango markup we generate. (#518 by @ammgws)
25+
26+
* Fixes a potential panic when the Focused Window block was the only one in the
27+
configuration. (#535 by @ammgws)
28+
29+
* Fixes potential issues due to not ignoring `stdin` and `stdout` when spawning
30+
child processes. (#530 by @Celti)
31+
32+
* Improvements to the spacing around icons and IP addresses in the Net block.
33+
(#505 and #507 by @ammgws)
34+
35+
* Bumps several dependencies to fix security issues and reduce the number of
36+
transitive dependencies, which should improve build times. (#491, #492, #493,
37+
#510, #523 by @ammgws)
38+
39+
* Updates the installation documentation for Fedora. The project is now in the
40+
official repos! (#488 by @tim77)
41+
42+
* Simplifies the `udev` rule in the Brightness block docs. (#481 by @hellow554)
43+
44+
* Fixes a typo in the theme documentation. (#485 by @peeweep)
45+
46+
* Adds mention in the documentation that the Focused Window block is compatible
47+
with Sway. (#497 by @NilsIrl)
48+
49+
* Adds documentation for the optional Notmuch mail block. (#527 by @ammgws)
50+
51+
* Travis CI will now compile the project with all features enabled, which would
52+
have caught several bugs long ago. (#539 by @rotty)
53+
154
# i3status-rust 0.12.0
255

356
## New Blocks and Features

‎src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ use crossbeam_channel::{select, Receiver, Sender};
4343

4444
fn main() {
4545
let mut builder = App::new("i3status-rs")
46-
.version("0.12.0")
46+
.version("0.13.0")
4747
.author(
4848
"Kai Greshake <development@kai-greshake.de>, Contributors on GitHub: \\
4949
https://github.com/greshake/i3status-rust/graphs/contributors",

0 commit comments

Comments
 (0)
Please sign in to comment.