From 3413f125d80158e8d2c364825ba64682e52c1478 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Tue, 27 May 2025 21:38:13 -0500 Subject: [PATCH] Set LFS_VERSION to v0.0 Like the LFS_DISK_VERSION, the intention is to mark the current driver as experimental. Just in case... --- lfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs.h b/lfs.h index 5f07dc7a..4f39553f 100644 --- a/lfs.h +++ b/lfs.h @@ -16,7 +16,7 @@ // Software library version // Major (top-nibble), incremented on backwards incompatible changes // Minor (bottom-nibble), incremented on feature additions -#define LFS_VERSION 0x00020005 +#define LFS_VERSION 0x00000000 #define LFS_VERSION_MAJOR (0xffff & (LFS_VERSION >> 16)) #define LFS_VERSION_MINOR (0xffff & (LFS_VERSION >> 0))