A version was set to 1.1.2. And a year 2023 was set to 2024.

This commit is contained in:
Alexander Andreev 2024-04-26 04:06:31 +04:00
parent 9112fc018c
commit 43d86103c4
Signed by: Arav
GPG Key ID: 25969B23DCB5CA34
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2021-2023 Alexander "Arav" Andreev <me@arav.su>
Copyright (c) 2021-2024 Alexander "Arav" Andreev <me@arav.su>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@ -1,6 +1,6 @@
# Maintainer: Alexander "Arav" Andreev <me@arav.su>
pkgname=kwh-cost
pkgver=1.1.1
pkgver=1.1.2
pkgrel=1
pkgdesc="Calculates cost of electricity."
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')

4
main.c
View File

@ -2,7 +2,7 @@
#include <stdlib.h>
#include <string.h>
#define VERSION "1.1.1"
#define VERSION "1.1.2"
typedef long double price_t;
typedef long double wattage_t;
@ -83,7 +83,7 @@ inline price_t price_kwh_to_wattsecond(const price_t price) {
inline void print_version() {
fputs("kwh-cost Ver. " VERSION "\n"
"Copyright (C) 2021-2023 Alexander \"Arav\" Andreev <me@arav.su>. All rights reserved.\n"
"Copyright (C) 2021-2024 Alexander \"Arav\" Andreev <me@arav.su>. All rights reserved.\n"
"This program is distributed under the terms of MIT+NIGGER licence.\n"
"You can see a license for this program in /usr/share/licenses/kwh-cost/LICENSE.\n", stderr);
}