Skip to content

Commit 2192a76

Browse files
committed
Release v0.3.0
Rename cargo package to `rx-editor` due to name conflict..
1 parent 4284aaf commit 2192a76

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "rx"
3-
version = "0.2.0"
2+
name = "rx-editor"
3+
version = "0.3.0"
44
description = "a modern, extensible pixel editor"
55
license = "GPL-3.0-only"
66
repository = "https://github.com/cloudhead/rx"
@@ -33,3 +33,10 @@ lazy_static = "*"
3333
toml = "0.5"
3434
serde = "*"
3535
serde_derive = "*"
36+
37+
[lib]
38+
name = "rx"
39+
40+
[[bin]]
41+
name = "rx"
42+
path = "src/main.rs"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ use std::rc::Rc;
6464
use std::time;
6565

6666
/// Program version.
67-
pub const VERSION: &str = "0.2.0";
67+
pub const VERSION: &str = "0.3.0";
6868

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

0 commit comments

Comments
 (0)