Skip to content

Commit

Permalink
Version bump to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudhead committed Feb 4, 2020
1 parent bac05d1 commit 4235af8
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,16 @@
* Fix crash on load, when file path is passed in via CLI
* Fix crash with `:q` when multiple views are loaded
* Fix visual bug when `checker` and `debug` are both active

0.4.0

New features

* Command history with <up>/<down> arrows
* Command-line <tab> completion on files and directories
* New command `:wq` to write and quit

Changes

* Much lower CPU usage when no user input
* `input/delay` setting removed
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rx"
version = "0.3.2"
version = "0.4.0"
description = "a modern, extensible pixel editor"
license = "GPL-3.0-only"
repository = "https://github.com/cloudhead/rx"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ use std::rc::Rc;
use std::time::{Duration, Instant};

/// Program version.
pub const VERSION: &str = "0.3.2";
pub const VERSION: &str = "0.4.0";

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

0 comments on commit 4235af8

Please sign in to comment.