From 0e42202f2cce76cae4dbff75ae0b86568e6755ff Mon Sep 17 00:00:00 2001 From: Mark <> Date: Wed, 3 Jul 2024 13:42:56 +0200 Subject: [PATCH] version bump --- mers/Cargo.toml | 6 +++--- mers_lib/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mers/Cargo.toml b/mers/Cargo.toml index 17b3fcc..8534c69 100644 --- a/mers/Cargo.toml +++ b/mers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mers" -version = "0.9.0" +version = "0.9.1" edition = "2021" license = "MIT OR Apache-2.0" description = "dynamically typed but type-checked programming language" @@ -15,7 +15,7 @@ default = ["colored-output"] colored-output = ["mers_lib/ecolor-term", "mers_lib/pretty-print", "dep:colored"] [dependencies] -# mers_lib = "0.9.0" -mers_lib = { path = "../mers_lib" } +mers_lib = "0.9.1" +# mers_lib = { path = "../mers_lib" } clap = { version = "4.3.19", features = ["derive"] } colored = { version = "2.1.0", optional = true } diff --git a/mers_lib/Cargo.toml b/mers_lib/Cargo.toml index d644ad4..60eba8b 100755 --- a/mers_lib/Cargo.toml +++ b/mers_lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mers_lib" -version = "0.9.0" +version = "0.9.1" edition = "2021" license = "MIT OR Apache-2.0" description = "library to use the mers language in other projects"