From 80784a0c8c31b812052c5f23781516bb25a4bf93 Mon Sep 17 00:00:00 2001 From: Peter Hatina Date: Tue, 3 Dec 2013 21:14:11 +0100 Subject: [PATCH] bump release version to 0.2 --- NEWS | 13 +++++++++++++ configure.ac | 4 ++-- debian/changelog | 6 ++++++ debian/copyright | 2 +- debian/rules | 0 debian/simple-mtpfs.docs | 2 +- makefile.am | 2 +- man/simple-mtpfs.1 | 4 ++-- simple-mtpfs.spec | 11 +++++++---- 9 files changed, 33 insertions(+), 11 deletions(-) mode change 100644 => 100755 debian/rules diff --git a/NEWS b/NEWS index e69de29..5970315 100644 --- a/NEWS +++ b/NEWS @@ -0,0 +1,13 @@ +New in version 0.2: +- introduced special device file as mount parameter + - MTP device can be specified by special file placed in /dev +- fixed bogus storage size reported on FreeBSD +- temporary directory can be configured during setup time (--with-tmpdir=) +- temporary directory can be overridden by environment variables TMP, TMPDIR +- build fixes + - on older C++ compilers + - Mac OS X (fuse) + - FreeBSD +- libmtp debug messages are suppressed +- reference counting for opened temporary files +- various fixes, improvements and code cleanup diff --git a/configure.ac b/configure.ac index 1898249..63abc1a 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,9 @@ AC_PREREQ([2.60]) -AC_INIT([simple-mtpfs], [0.1], [phatina@gmail.com]) +AC_INIT([simple-mtpfs], [0.2], [phatina@gmail.com]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([dist-bzip2]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) AC_CONFIG_HEADERS(config.h) AM_SILENT_RULES([yes]) diff --git a/debian/changelog b/debian/changelog index 22e0606..72ab9ab 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +simple-mtpfs (0.2-1) unstable; urgency=low + + * Upgrade to v0.2 + + -- Peter Hatina Tue, 03 Dec 2013 21:51:20 +0100 + simple-mtpfs (0.1-1) precise; urgency=low * Initial release diff --git a/debian/copyright b/debian/copyright index 2f5d6ce..e87f8c9 100644 --- a/debian/copyright +++ b/debian/copyright @@ -5,7 +5,7 @@ It was downloaded from . Copyright: - Copyright (C) 2012 Peter Hatina + Copyright (C) 2012-2013 Peter Hatina This program can be distributed under the terms of the GNU GPL. See the file COPYING. diff --git a/debian/rules b/debian/rules old mode 100644 new mode 100755 diff --git a/debian/simple-mtpfs.docs b/debian/simple-mtpfs.docs index 50bd824..8913f46 100644 --- a/debian/simple-mtpfs.docs +++ b/debian/simple-mtpfs.docs @@ -1,2 +1,2 @@ NEWS -README +README.md diff --git a/makefile.am b/makefile.am index c28a3c0..c086453 100644 --- a/makefile.am +++ b/makefile.am @@ -1,4 +1,4 @@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = src man -EXTRA_DIST = m4 +EXTRA_DIST = m4 README.md diff --git a/man/simple-mtpfs.1 b/man/simple-mtpfs.1 index df996a4..28a3078 100644 --- a/man/simple-mtpfs.1 +++ b/man/simple-mtpfs.1 @@ -1,10 +1,10 @@ -.TH SIMPLE-MTPFS "1" "September 2012" "SIMPLE-MTPFS version 0.1" "User Commands" +.TH SIMPLE-MTPFS "1" "December 2013" "SIMPLE-MTPFS version 0.2" "User Commands" .SH NAME SIMPLE-MTPFS \- filesystem driver for MTP based devices .SH SYNOPSIS .SS mounting .TP -\fBsimple-mtpfs \fBmountpoint\fP [\fIoptions\fP] +\fBsimple-mtpfs \fB\fP \fBmountpoint\fP [\fIoptions\fP] .SS unmounting .TP \fBfusermount -u mountpoint\fP diff --git a/simple-mtpfs.spec b/simple-mtpfs.spec index 245dfb0..82d0198 100644 --- a/simple-mtpfs.spec +++ b/simple-mtpfs.spec @@ -1,12 +1,12 @@ Name: simple-mtpfs -Version: 0.1 -Release: 5%{?dist} +Version: 0.2 +Release: 1%{?dist} Summary: Fuse-based MTP driver License: GPLv2+ URL: https://github.com/phatina/simple-mtpfs Source0: https://github.com/downloads/phatina/simple-mtpfs/%{name}-%{version}.tar.gz -BuildRequires: fuse-devel >= 2.8 +BuildRequires: fuse-devel >= 2.7.3 BuildRequires: libmtp-devel %description @@ -29,11 +29,14 @@ make %{?_smp_mflags} make install DESTDIR=$RPM_BUILD_ROOT %files -%doc COPYING README +%doc COPYING README.md %{_bindir}/simple-mtpfs %{_mandir}/man1/simple-mtpfs.1.gz %changelog +* Tue Dec 3 2013 Peter Hatina - 0.2-1 +- upgrade to v0.2 + * Tue Oct 23 2012 Peter Hatina - 0.1-5 - changed license to GPLv2