Skip to content

Commit 4235af8

Browse files
committed
Version bump to v0.4.0
1 parent bac05d1 commit 4235af8

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,16 @@
8686
* Fix crash on load, when file path is passed in via CLI
8787
* Fix crash with `:q` when multiple views are loaded
8888
* Fix visual bug when `checker` and `debug` are both active
89+
90+
0.4.0
91+
92+
New features
93+
94+
* Command history with <up>/<down> arrows
95+
* Command-line <tab> completion on files and directories
96+
* New command `:wq` to write and quit
97+
98+
Changes
99+
100+
* Much lower CPU usage when no user input
101+
* `input/delay` setting removed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rx"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
description = "a modern, extensible pixel editor"
55
license = "GPL-3.0-only"
66
repository = "https://github.com/cloudhead/rx"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ use std::rc::Rc;
7070
use std::time::{Duration, Instant};
7171

7272
/// Program version.
73-
pub const VERSION: &str = "0.3.2";
73+
pub const VERSION: &str = "0.4.0";
7474

7575
#[global_allocator]
7676
pub static ALLOCATOR: alloc::Allocator = alloc::Allocator::new(System);

0 commit comments

Comments
 (0)