diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b9557f53..ef0243ff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Cloudfuse Changelog # +## **1.9.0** ## + +March 4th 2025 +This version is based on [blobfuse2 2.3.2](https://github.com/Azure/azure-storage-fuse/releases/tag/blobfuse2-2.3.2) (upstream). + +### Changes ### + +- [#469](https://github.com/Seagate/cloudfuse/pull/469) Add enable-remount and disable-remount flags to CLI for Windows to better enable customizability on which mounts should remount on restart +- [#467](https://github.com/Seagate/cloudfuse/pull/467) Fixed bug with creation of windows startup utility + ## **1.8.2** ## March 3rd 2025 diff --git a/build/windows_installer_build.iss b/build/windows_installer_build.iss index d3bd5268f..361645581 100644 --- a/build/windows_installer_build.iss +++ b/build/windows_installer_build.iss @@ -3,7 +3,7 @@ ; https://jrsoftware.org/ishelp/index.php #define MyAppName "Cloudfuse" -#define MyAppVersion "1.8.2" +#define MyAppVersion "1.9.0" #define MyAppPublisher "SEAGATE TECHNOLOGY LLC" #define MyAppURL "https://github.com/Seagate/cloudfuse" #define MyAppExeName "cloudfuseGUI.exe" diff --git a/build/windows_installer_build_no_gui.iss b/build/windows_installer_build_no_gui.iss index 1666e3497..a37774567 100644 --- a/build/windows_installer_build_no_gui.iss +++ b/build/windows_installer_build_no_gui.iss @@ -3,7 +3,7 @@ ; https://jrsoftware.org/ishelp/index.php #define MyAppName "Cloudfuse" -#define MyAppVersion "1.8.2" +#define MyAppVersion "1.9.0" #define MyAppPublisher "SEAGATE TECHNOLOGY LLC" #define MyAppURL "https://github.com/Seagate/cloudfuse" #define MyAppExeCLIName "cloudfuse.exe" diff --git a/common/types.go b/common/types.go index cfde896db..7b3f1b7ff 100644 --- a/common/types.go +++ b/common/types.go @@ -40,7 +40,7 @@ import ( // Standard config default values const ( - cloudfuseVersion_ = "1.8.2" + cloudfuseVersion_ = "1.9.0" DefaultMaxLogFileSize = 512 DefaultLogFileCount = 10