Skip to content

Commit 670710c

Browse files
bump to 3.4.0
1 parent 32c95ab commit 670710c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mini-calc"
3-
version = "3.3.4-hotfix"
3+
version = "3.3.4"
44
license = "GPL-3.0-or-later"
55
description = "A Fully-Featured Configurable (mini) Rust Calculator"
66
homepage = "https://calc.charlotte-thomas.me"

src/configuration/loader.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ pub fn load_color(string: String) -> Color {
131131

132132
pub fn replace_variable(str: String) -> String {
133133
str.replace("%author%", "Charlotte Thomas")
134-
.replace("%version%", "v3.3.4-hotfix")
134+
.replace("%version%", "v3.3.4")
135135
.to_string()
136136
}
137137

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ fn handle_config(line: &str, config: Config) -> (String, Option<Config>) {
263263
fn main() {
264264
let mut args: Args = env::args();
265265

266-
let version: String = "v3.3.4-hotfix".to_string();
266+
let version: String = "v3.3.4".to_string();
267267
if args.len() > 1 || !atty::is(Stream::Stdin) {
268268
let mut a = vec![];
269269

0 commit comments

Comments
 (0)