Skip to content

Commit

Permalink
v0.3.0 release (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
foodprocessor authored Dec 20, 2023
1 parent a06cf1b commit 9ba7fd7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 ##

Expand Down
2 changes: 1 addition & 1 deletion build/windows_installer_build.iss
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion common/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import (

// Standard config default values
const (
cloudfuseVersion_ = "0.2.1"
cloudfuseVersion_ = "0.3.0"

DefaultMaxLogFileSize = 512
DefaultLogFileCount = 10
Expand Down

0 comments on commit 9ba7fd7

Please sign in to comment.