Skip to content

Commit 15a1c64

Browse files
authored
0.14.1 release (#360)
1 parent 7c9f2de commit 15a1c64

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[bumpversion]
2-
current_version = 0.14.0
2+
current_version = 0.14.1
33
commit = False
44
tag = False
55

66
[bumpversion:file:cmd/common/common.go]
77

8-
[bumpversion:file:resources/onedriver.1]
8+
[bumpversion:file:pkg/resources/onedriver.1]
99

1010
[bumpversion:file:onedriver.spec]
1111
search = Version: {current_version}

cmd/common/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/rs/zerolog/log"
99
)
1010

11-
const version = "0.14.0"
11+
const version = "0.14.1"
1212

1313
var commit string
1414

fs/fs.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ func (f *Filesystem) Open(cancel <-chan struct{}, in *fuse.OpenIn, out *fuse.Ope
530530
ctx.Error().Err(err).Msg("Failed to fetch remote content.")
531531
return fuse.EREMOTEIO
532532
}
533+
temp.Seek(0, 0) // being explicit, even though already done in hashstream func
533534
fd.Seek(0, 0)
534535
fd.Truncate(0)
535536
io.Copy(fd, temp)

onedriver.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: onedriver
2-
Version: 0.14.0
2+
Version: 0.14.1
33
Release: 1%{?dist}
44
Summary: A native Linux filesystem for Microsoft Onedrive
55

@@ -71,6 +71,9 @@ cp pkg/resources/%{name}.1.gz %{buildroot}/usr/share/man/man1
7171
%attr(644, root, root) /usr/share/man/man1/%{name}.1.gz
7272

7373
%changelog
74+
* Wed Oct 18 2023 Jeff Stafford <[email protected]> - 0.14.1
75+
- Fixes a bug with file corruption in some scenarios from version 0.14.0.
76+
7477
* Fri Jul 14 2023 Jeff Stafford <[email protected]> - 0.14.0
7578
- We now use quickxorhash checksums for both personal and business accounts.
7679
- The cache for file contents has been moved out of boltdb and onto the local filesystem.

pkg/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
onedriver (0.14.1-1) jammy; urgency=low
2+
3+
* Fixes a bug with file corruption in some scenarios from version 0.14.0.
4+
5+
-- Jeff Stafford <[email protected]> Wed, 18 Oct 2023 02:00:00 -0400
6+
17
onedriver (0.14.0-2) jammy; urgency=low
28

39
* This is a dummy release to forcibly refresh the GPG key in the Debian OBS repositories.

pkg/resources/onedriver.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for onedriver
22

3-
.TH man 1 "Nov 2021" "0.14.0" "onedriver man page"
3+
.TH man 1 "Nov 2021" "0.14.1" "onedriver man page"
44

55
.SH NAME
66
onedriver \- A native Linux client for Microsoft OneDrive.

0 commit comments

Comments
 (0)