From 9ba7fd7013c028ec81775198d7e00f529da1b736 Mon Sep 17 00:00:00 2001 From: Michael Habinsky Date: Wed, 20 Dec 2023 14:37:43 -0700 Subject: [PATCH] v0.3.0 release (#71) --- CHANGELOG.md | 10 +++++++++- build/windows_installer_build.iss | 2 +- common/types.go | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae0d436a9..6fbedbd05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,19 @@ # Cloudfuse Changelog # -## 0.3.0 (Unreleased) ## +## 0.3.0 ## This version is based on [blobfuse2 2.1.2](https://github.com/Azure/azure-storage-fuse/releases/tag/blobfuse2-2.1.2) (upstream). **Changes** +-- Windows mount no longer requires admin rights -- Replaced service dedicated to restart mounts on bootup, with a new Windows startup tool that restarts mounts on login. -- Persistent mounts are now stored in AppData on Windows rather than the registry. +-- Add --dry-run option +-- Bump golang.org/x/crypto from 0.15.0 to 0.17.0 +**Bug Fixes** +-- [#58](https://github.com/Seagate/cloudfuse/pull/58) Fix Windows permissions +-- [#61](https://github.com/Seagate/cloudfuse/pull/61) Keep window open on failed config write +-- [#62](https://github.com/Seagate/cloudfuse/pull/62) Don't delete file cache on unmount when allow-non-empty-temp is set +-- [#70](https://github.com/Seagate/cloudfuse/pull/70) Fix window position issue ## 0.2.1 ## diff --git a/build/windows_installer_build.iss b/build/windows_installer_build.iss index 002db9d1a..cfef2e9e5 100644 --- a/build/windows_installer_build.iss +++ b/build/windows_installer_build.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Cloudfuse" -#define MyAppVersion "0.2.1" +#define MyAppVersion "0.3.0" #define MyAppPublisher "Seagate Technology" #define MyAppURL "https://github.com/Seagate/cloudfuse" #define MyAppExeName "cloudfuseGUI.exe" diff --git a/common/types.go b/common/types.go index a876f79cb..2087b0538 100644 --- a/common/types.go +++ b/common/types.go @@ -38,7 +38,7 @@ import ( // Standard config default values const ( - cloudfuseVersion_ = "0.2.1" + cloudfuseVersion_ = "0.3.0" DefaultMaxLogFileSize = 512 DefaultLogFileCount = 10