Skip to content

Commit f966136

Browse files
committed
Fix bug printing wrong version
1 parent 67d65ca commit f966136

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name = "carlo"
1313
description = "A simple interpreted programming language."
1414
license = "MIT"
1515
repository = "https://github.com/hobbsbros/carlo.git"
16-
version = "0.12.0"
16+
version = "0.12.1"
1717
edition = "2021"
1818

1919
[[bin]]
@@ -27,7 +27,7 @@ rustyline = "13.0.0"
2727
[dependencies.carlotk]
2828
path = "./carlotk"
2929
package = "carlotk"
30-
version = "0.12.0"
30+
version = "0.12.1"
3131

3232
[dependencies.help]
3333
path = "./subcommands/help"

carlotk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "carlotk"
33
description = "The main library for Carlo, a simple interpreted programming language."
44
license = "MIT"
55
repository = "https://github.com/hobbsbros/carlo.git"
6-
version = "0.12.0"
6+
version = "0.12.1"
77
edition = "2021"
88

99
[lib]

carlotk/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub use unit::{
4949
UNITS,
5050
};
5151

52-
pub const VERSION: &str = "0.11.0";
52+
pub const VERSION: &str = "0.12.1";
5353

5454
/// A prelude for writing subcommands.
5555
pub mod prelude {

0 commit comments

Comments
 (0)