Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect version reporting if built with meson #79

Closed
yan12125 opened this issue Aug 13, 2017 · 1 comment
Closed

Incorrect version reporting if built with meson #79

yan12125 opened this issue Aug 13, 2017 · 1 comment

Comments

@yan12125
Copy link

I built sshfs 3.2.0 with meson and check its --version:

$ sshfs --version
SSHFS version 3.1.0
FUSE library version 3.1.1
using FUSE kernel interface version 7.26
fusermount3 version: 3.1.1

The reason is that meson.build is not updated during the release of 3.2.0. A possible fix:

diff --git a/meson.build b/meson.build
index 401e9e2..1aff672 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('sshfs', 'c', version: '3.1.0',
+project('sshfs', 'c', version: '3.2.0',
         meson_version: '>= 0.38',
         default_options: [ 'buildtype=plain' ])
@Nikratio
Copy link
Contributor

Fixed in 1f20b5d, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants