Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
Rename cargo package to `rx-editor` due to name conflict..
  • Loading branch information
cloudhead committed Dec 27, 2019
1 parent 4284aaf commit 2192a76
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rx"
version = "0.2.0"
name = "rx-editor"
version = "0.3.0"
description = "a modern, extensible pixel editor"
license = "GPL-3.0-only"
repository = "https://github.com/cloudhead/rx"
Expand Down Expand Up @@ -33,3 +33,10 @@ lazy_static = "*"
toml = "0.5"
serde = "*"
serde_derive = "*"

[lib]
name = "rx"

[[bin]]
name = "rx"
path = "src/main.rs"
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ use std::rc::Rc;
use std::time;

/// Program version.
pub const VERSION: &str = "0.2.0";
pub const VERSION: &str = "0.3.0";

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

0 comments on commit 2192a76

Please sign in to comment.