Skip to content

Commit 9194ad9

Browse files
Bump release to 1.12.0 (#572)
1 parent a68515d commit 9194ad9

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

.github/workflows/publish-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
runs-on: ubuntu-latest
189189
env:
190190
go: "1.24"
191-
zig: 0.14.0
191+
zig: 0.14.1
192192
permissions:
193193
contents: write
194194
id-token: write

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Cloudfuse Changelog #
22

3+
## **1.12.0** ##
4+
5+
June 6th 2025
6+
This version is based on [blobfuse2 2.4.0](https://github.com/Azure/azure-storage-fuse/releases/tag/blobfuse2-2.4.0) (upstream).
7+
8+
### Bug Fixes ###
9+
10+
- [#539](https://github.com/Seagate/cloudfuse/pull/539) Fix issues with block cache and s3
11+
- [#566](https://github.com/Seagate/cloudfuse/pull/566) Fix race conditions with block cache on Windows
12+
- [#562](https://github.com/Seagate/cloudfuse/pull/562) A default file cache path is now set if not in config file
13+
14+
### Features ###
15+
16+
- [#565](https://github.com/Seagate/cloudfuse/pull/565) Data cached in the file cache is now persisted on remounts
17+
318
## **1.11.2** ##
419

520
May 15th 2025

build/windows_installer_build.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; https://jrsoftware.org/ishelp/index.php
44

55
#define MyAppName "Cloudfuse"
6-
#define MyAppVersion "1.11.2"
6+
#define MyAppVersion "1.12.0"
77
#define MyAppPublisher "SEAGATE TECHNOLOGY LLC"
88
#define MyAppURL "https://github.com/Seagate/cloudfuse"
99
#define MyAppExeName "cloudfuseGUI.exe"

build/windows_installer_build_no_gui.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; https://jrsoftware.org/ishelp/index.php
44

55
#define MyAppName "Cloudfuse"
6-
#define MyAppVersion "1.11.2"
6+
#define MyAppVersion "1.12.0"
77
#define MyAppPublisher "SEAGATE TECHNOLOGY LLC"
88
#define MyAppURL "https://github.com/Seagate/cloudfuse"
99
#define MyAppExeCLIName "cloudfuse.exe"

common/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import (
4040

4141
// Standard config default values
4242
const (
43-
cloudfuseVersion_ = "1.11.2"
43+
cloudfuseVersion_ = "1.12.0"
4444

4545
DefaultMaxLogFileSize = 512
4646
DefaultLogFileCount = 10

0 commit comments

Comments
 (0)