diff options
author | Stefan Eßer <se@FreeBSD.org> | 2024-08-28 16:46:05 +0000 |
---|---|---|
committer | Stefan Eßer <se@FreeBSD.org> | 2024-08-28 16:46:05 +0000 |
commit | 1e19146fc7692f59e8dfc5da7957e938cd0b81b8 (patch) | |
tree | a2743353eb47b55125b2d610a458fe82e2eb2042 | |
parent | 54d20d67e2af28d948ce2df13feb039fa10900fc (diff) |
-rw-r--r-- | NEWS.md | 6 | ||||
-rw-r--r-- | include/version.h | 2 | ||||
-rw-r--r-- | src/main.c | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,5 +1,11 @@ # News +## 7.0.1 + +This is a production release that fixes a warning using GCC on FreeBSD. + +Other users do ***NOT*** need to upgrade. + ## 7.0.0 This is a production release to fix three bugs. diff --git a/include/version.h b/include/version.h index 897a19530e3f..4d2f6acfb433 100644 --- a/include/version.h +++ b/include/version.h @@ -37,6 +37,6 @@ #define BC_VERSION_H /// The current version. -#define VERSION 7.0.0 +#define VERSION 7.0.1 #endif // BC_VERSION_H diff --git a/src/main.c b/src/main.c index e4a1f7399bb4..da4c27156029 100644 --- a/src/main.c +++ b/src/main.c @@ -54,7 +54,7 @@ #include <dc.h> int -main(int argc, char* argv[]) +main(int argc, const char* argv[]) { BcStatus s; char* name; |