Skip to content

Commit

Permalink
VERSION 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
maharmstone committed Mar 16, 2024
1 parent 01720e3 commit 0d913ac
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

project(btrfs VERSION 1.8.2)
project(btrfs VERSION 1.9.0)

option(WITH_TEST "Compile test program" ON)

Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
WinBtrfs v1.8.2
---------------
WinBtrfs v1.9
-------------

WinBtrfs is a Windows driver for the next-generation Linux filesystem Btrfs.
A reimplementation from scratch, it contains no code from the Linux kernel,
Expand Down Expand Up @@ -79,6 +79,7 @@ Features
* Metadata UUID incompat flag (Linux 5.0)
* Three- and four-disk RAID1 (Linux 5.5)
* New checksum types (xxhash, sha256, blake2) (Linux 5.5)
* Block group tree (Linux 6.1)

Todo
----
Expand Down Expand Up @@ -292,6 +293,13 @@ partition type from 83 to 7.
Changelog
---------

v1.9 (2024-03-15):
* Added support for block group tree (Linux 6.1)
* Fixed hang when system under heavy load
* Added /blockgrouptree and /freespacetree options to mkbtrfs
* Follow Linux in defaulting /noholes to on in mkbtrfs
* Added support for CRC32C instructions on aarch64

v1.8.2 (2023-01-10):
* Fixed UAC not working
* Fixed Smartlocker crash on Windows 11 22H2
Expand Down
4 changes: 2 additions & 2 deletions src/btrfs-vol.inf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
;;; WinBtrfs
;;;
;;;
;;; Copyright (c) 2016-23 Mark Harmstone
;;; Copyright (c) 2016-24 Mark Harmstone
;;;

[Version]
Signature = "$Windows NT$"
Class = Volume
ClassGuid = {71a27cdd-812a-11d0-bec7-08002be2092f}
Provider = %Me%
DriverVer = 01/10/2023,1.8.2.0
DriverVer = 03/15/2024,1.9.0.0
CatalogFile = btrfs.cat
PnpLockdown = 1

Expand Down
4 changes: 2 additions & 2 deletions src/btrfs.inf
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
;;; WinBtrfs
;;;
;;;
;;; Copyright (c) 2016-23 Mark Harmstone
;;; Copyright (c) 2016-24 Mark Harmstone
;;;

[Version]
Signature = "$Windows NT$"
Class = Volume
ClassGuid = {71a27cdd-812a-11d0-bec7-08002be2092f}
Provider = %Me%
DriverVer = 01/10/2023,1.8.2.0
DriverVer = 03/15/2024,1.9.0.0
CatalogFile = btrfs.cat

[DestinationDirs]
Expand Down

0 comments on commit 0d913ac

Please sign in to comment.