From 9a6128d06e08919e7a1731a88578a5d1506a947b Mon Sep 17 00:00:00 2001 From: hfiref0x Date: Mon, 1 Jul 2024 01:27:05 +0700 Subject: [PATCH] Bump versions --- Bin/changelog.txt | 3 +++ LICENSE.md | 2 +- README.md | 2 +- Source/ftpconst.c | 2 +- Source/ftpserv.c | 2 +- Source/ftpserv.h | 4 ++-- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Bin/changelog.txt b/Bin/changelog.txt index 24fdd1c..4af5b9c 100644 --- a/Bin/changelog.txt +++ b/Bin/changelog.txt @@ -2,6 +2,9 @@ - Removed * Fixed/Changed +Jun 30, 2024, v2.3.1 +* fix for race condition bug in ABRT command + Feb 4, 2023, v2.3 * fix CVE-2023-24042 (#25) + more statistics added diff --git a/LICENSE.md b/LICENSE.md index 28a67c5..6d01641 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright (c) LightFTP 2007 - 2023 Project authors +Copyright (c) LightFTP 2007 - 2024 Project authors Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index 0630393..781962a 100644 --- a/README.md +++ b/README.md @@ -144,4 +144,4 @@ Changelog available at Bin/changelog.txt # Authors -(c) 2007 - 2022 LightFTP Project +(c) 2007 - 2024 LightFTP Project diff --git a/Source/ftpconst.c b/Source/ftpconst.c index caa8461..73633a0 100644 --- a/Source/ftpconst.c +++ b/Source/ftpconst.c @@ -2,7 +2,7 @@ * ftpconst.c * * Created : May 15, 2020 - * Modified : May 15, 2020 + * Modified : Jun 30, 2024 * Author : lightftp */ diff --git a/Source/ftpserv.c b/Source/ftpserv.c index 60deb9f..02e7efb 100644 --- a/Source/ftpserv.c +++ b/Source/ftpserv.c @@ -3,7 +3,7 @@ * * Created on: Aug 20, 2016 * - * Modified on: Jul 22, 2023 + * Modified on: Jun 30, 2024 * * Author: lightftp */ diff --git a/Source/ftpserv.h b/Source/ftpserv.h index 31772fc..9ac309e 100644 --- a/Source/ftpserv.h +++ b/Source/ftpserv.h @@ -3,7 +3,7 @@ * * Created on: Aug 20, 2016 * -* Modified on: Jan 29, 2023 +* Modified on: Jun 30, 2024 * * Author: lightftp */ @@ -61,7 +61,7 @@ typedef struct _FTP_CONFIG { in_addr_t LocalIPMask; } FTP_CONFIG, *PFTP_CONFIG; -#define FTP_VERSION "2.3" +#define FTP_VERSION "2.3.1" #define CONFIG_FILE_NAME "fftp.conf" #define CONFIG_SECTION_NAME "ftpconfig" #define DEFAULT_FTP_PORT 21