Skip to content

Commit 29cea38

Browse files
committed
v0.0.3 RC
1 parent 30589b2 commit 29cea38

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mech"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
authors = ["Corey Montella <[email protected]>"]
55
description = "Main crate for the Mech programming language. Provides a REPL and hosted editor."
66
documentation = "http://docs.mech-lang.org"
@@ -16,11 +16,10 @@ gitlab = { repository = "mech-lang/mech", branch = "master" }
1616
maintenance = { status = "actively-developed" }
1717

1818
[dependencies]
19-
mech-core = {git = "https://gitlab.com/mech-lang/core"}
20-
mech-syntax = {git = "https://gitlab.com/mech-lang/syntax"}
21-
mech-server = {git = "https://gitlab.com/mech-lang/server"}
22-
mech-program = {git = "https://gitlab.com/mech-lang/program"}
23-
mech-system = {git = "https://gitlab.com/mech-lang/system"}
19+
mech-core = "0.0.3"
20+
mech-syntax = "0.0.3"
21+
mech-server = "0.0.3"
22+
mech-program = "0.0.3"
2423
clap = "2.31.2"
2524
term-painter = "0.2.4"
2625
nom = "4.2.2"

src/bin/mech.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub enum ReplCommand {
5454
// ## Mech Entry
5555

5656
fn main() {
57-
let version = "0.0.3a";
57+
let version = "0.0.3";
5858
let matches = App::new("Mech")
5959
.version(version)
6060
.author("Corey Montella")
@@ -171,6 +171,7 @@ fn main() {
171171
} else if matches.is_present("run") {
172172
let mech_paths = matches.values_of("run_mech_file_paths").map_or(vec![], |files| files.collect());
173173
println!("Running {:?}", mech_paths);
174+
// TODO - Implement running a folder of .mec files
174175
std::process::exit(0);
175176
}
176177

0 commit comments

Comments
 (0)