Skip to content

Commit

Permalink
Merge pull request #51 from git-user-cpp/v2_0_X
Browse files Browse the repository at this point in the history
v2.0.2
  • Loading branch information
git-user-cpp authored Jun 12, 2023
2 parents 4fffa3d + 0c4f0da commit bad7c4b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "finance_manager"
version = "2.0.1"
version = "2.0.2"
edition = "2021"
authors = ["Andrew Kushyk"]
description = "Simple finance manager"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Finance manager v2.0.1
# Finance manager v2.0.2

[![Build Ubuntu](https://github.com/git-user-cpp/finance_manager/actions/workflows/CI_Ubuntu.yml/badge.svg?branch=main)](https://github.com/git-user-cpp/finance_manager/actions/workflows/CI_Ubuntu.yml)
[![Build Windows](https://github.com/git-user-cpp/finance_manager/actions/workflows/CI_Windows.yml/badge.svg?branch=main)](https://github.com/git-user-cpp/finance_manager/actions/workflows/CI_Windows.yml)
Expand Down
2 changes: 1 addition & 1 deletion src/console/console_menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Copyright 2023 Andrew Kushyk

use colored::Colorize;

use crate::product::Product;
use crate::product_structure::product::Product;

///Function for printing main menu
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use crate::console::console_menu::print_stop_message;
use crate::product_structure::product::Product;

fn main() {
let products_list: Vec<Product> = Vec::new();
let mut products_list: Vec<Product> = Vec::new();

launch_main_console_menu(products_list);

Expand Down

0 comments on commit bad7c4b

Please sign in to comment.