diff --git a/LICENSE b/LICENSE index 20b904e..1b5bdd2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021-2023 Alexander "Arav" Andreev +Copyright (c) 2021-2024 Alexander "Arav" Andreev 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: diff --git a/PKGBUILD b/PKGBUILD index 84f1b25..0fbdcc3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Alexander "Arav" Andreev 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') diff --git a/main.c b/main.c index 35ecf4f..e6c59e2 100644 --- a/main.c +++ b/main.c @@ -2,7 +2,7 @@ #include #include -#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 . All rights reserved.\n" + "Copyright (C) 2021-2024 Alexander \"Arav\" Andreev . 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); }