Skip to content

Commit

Permalink
0.14.1 release (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstaf committed Oct 18, 2023
1 parent 7c9f2de commit 15a1c64
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[bumpversion]
current_version = 0.14.0
current_version = 0.14.1
commit = False
tag = False

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

[bumpversion:file:resources/onedriver.1]
[bumpversion:file:pkg/resources/onedriver.1]

[bumpversion:file:onedriver.spec]
search = Version: {current_version}
Expand Down
2 changes: 1 addition & 1 deletion cmd/common/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/rs/zerolog/log"
)

const version = "0.14.0"
const version = "0.14.1"

var commit string

Expand Down
1 change: 1 addition & 0 deletions fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -530,6 +530,7 @@ func (f *Filesystem) Open(cancel <-chan struct{}, in *fuse.OpenIn, out *fuse.Ope
ctx.Error().Err(err).Msg("Failed to fetch remote content.")
return fuse.EREMOTEIO
}
temp.Seek(0, 0) // being explicit, even though already done in hashstream func
fd.Seek(0, 0)
fd.Truncate(0)
io.Copy(fd, temp)
Expand Down
5 changes: 4 additions & 1 deletion onedriver.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: onedriver
Version: 0.14.0
Version: 0.14.1
Release: 1%{?dist}
Summary: A native Linux filesystem for Microsoft Onedrive

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

%changelog
* Wed Oct 18 2023 Jeff Stafford <jeff.stafford@protonmail.com> - 0.14.1
- Fixes a bug with file corruption in some scenarios from version 0.14.0.

* Fri Jul 14 2023 Jeff Stafford <jeff.stafford@protonmail.com> - 0.14.0
- We now use quickxorhash checksums for both personal and business accounts.
- The cache for file contents has been moved out of boltdb and onto the local filesystem.
Expand Down
6 changes: 6 additions & 0 deletions pkg/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
onedriver (0.14.1-1) jammy; urgency=low

* Fixes a bug with file corruption in some scenarios from version 0.14.0.

-- Jeff Stafford <jeff.stafford@protonmail.com> Wed, 18 Oct 2023 02:00:00 -0400

onedriver (0.14.0-2) jammy; urgency=low

* This is a dummy release to forcibly refresh the GPG key in the Debian OBS repositories.
Expand Down
2 changes: 1 addition & 1 deletion pkg/resources/onedriver.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for onedriver

.TH man 1 "Nov 2021" "0.14.0" "onedriver man page"
.TH man 1 "Nov 2021" "0.14.1" "onedriver man page"

.SH NAME
onedriver \- A native Linux client for Microsoft OneDrive.
Expand Down

0 comments on commit 15a1c64

Please sign in to comment.