Skip to content

Commit

Permalink
Increased the version number to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
M4444 committed May 27, 2019
1 parent f3285d5 commit b726b37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/tmatrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef TMATRIX_H
#define TMATRIX_H

constexpr double VERSION_NUMBER {0.9};
constexpr double VERSION_NUMBER {1.0};

constexpr int MIN_STEPS_PER_SECOND {1};
constexpr int MAX_STEPS_PER_SECOND {60};
Expand Down
3 changes: 2 additions & 1 deletion src/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ namespace Parser {
//---VERSION------------------------------------------------------------
void PrintVersion()
{
std::cout << "tmatrix version " << VERSION_NUMBER << '\n';
std::cout.precision(1);
std::cout << "tmatrix version " << std::fixed << VERSION_NUMBER << '\n';
std::cout << '\n';
std::cout << "Copyright (C) 2018-2019 Miloš Stojanović" << '\n';
std::cout << "SPDX-License-Identifier: GPL-2.0-only" << '\n';
Expand Down
2 changes: 1 addition & 1 deletion tmatrix.6
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH TMatrix 6 "19 May 2019" "TMatrix Version 0.9"
.TH TMatrix 6 "27 May 2019" "TMatrix Version 1.0"
.SH NAME
TMatrix \- Terminal based replica of the digital rain from The Matrix
.SH SYNOPSIS
Expand Down

0 comments on commit b726b37

Please sign in to comment.