bump release version to 0.2

This commit is contained in:
Peter Hatina 2013-12-03 21:14:11 +01:00
parent 351554319b
commit 80784a0c8c
9 changed files with 33 additions and 11 deletions

13
NEWS
View File

@ -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

View File

@ -1,9 +1,9 @@
AC_PREREQ([2.60]) 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]) AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([dist-bzip2]) AM_INIT_AUTOMAKE([foreign dist-bzip2])
AC_CONFIG_HEADERS(config.h) AC_CONFIG_HEADERS(config.h)
AM_SILENT_RULES([yes]) AM_SILENT_RULES([yes])

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
simple-mtpfs (0.2-1) unstable; urgency=low
* Upgrade to v0.2
-- Peter Hatina <phatina@gmail.com> Tue, 03 Dec 2013 21:51:20 +0100
simple-mtpfs (0.1-1) precise; urgency=low simple-mtpfs (0.1-1) precise; urgency=low
* Initial release * Initial release

2
debian/copyright vendored
View File

@ -5,7 +5,7 @@ It was downloaded from <https://github.com/phatina/simple-mtpfs>.
Copyright: Copyright:
Copyright (C) 2012 Peter Hatina <phatina@gmail.com> Copyright (C) 2012-2013 Peter Hatina <phatina@gmail.com>
This program can be distributed under the terms of the GNU GPL. This program can be distributed under the terms of the GNU GPL.
See the file COPYING. See the file COPYING.

0
debian/rules vendored Normal file → Executable file
View File

View File

@ -1,2 +1,2 @@
NEWS NEWS
README README.md

View File

@ -1,4 +1,4 @@
ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src man SUBDIRS = src man
EXTRA_DIST = m4 EXTRA_DIST = m4 README.md

View File

@ -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 .SH NAME
SIMPLE-MTPFS \- filesystem driver for MTP based devices SIMPLE-MTPFS \- filesystem driver for MTP based devices
.SH SYNOPSIS .SH SYNOPSIS
.SS mounting .SS mounting
.TP .TP
\fBsimple-mtpfs \fBmountpoint\fP [\fIoptions\fP] \fBsimple-mtpfs \fB<device>\fP \fBmountpoint\fP [\fIoptions\fP]
.SS unmounting .SS unmounting
.TP .TP
\fBfusermount -u mountpoint\fP \fBfusermount -u mountpoint\fP

View File

@ -1,12 +1,12 @@
Name: simple-mtpfs Name: simple-mtpfs
Version: 0.1 Version: 0.2
Release: 5%{?dist} Release: 1%{?dist}
Summary: Fuse-based MTP driver Summary: Fuse-based MTP driver
License: GPLv2+ License: GPLv2+
URL: https://github.com/phatina/simple-mtpfs URL: https://github.com/phatina/simple-mtpfs
Source0: https://github.com/downloads/phatina/simple-mtpfs/%{name}-%{version}.tar.gz 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 BuildRequires: libmtp-devel
%description %description
@ -29,11 +29,14 @@ make %{?_smp_mflags}
make install DESTDIR=$RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT
%files %files
%doc COPYING README %doc COPYING README.md
%{_bindir}/simple-mtpfs %{_bindir}/simple-mtpfs
%{_mandir}/man1/simple-mtpfs.1.gz %{_mandir}/man1/simple-mtpfs.1.gz
%changelog %changelog
* Tue Dec 3 2013 Peter Hatina <phatina@redhat.com> - 0.2-1
- upgrade to v0.2
* Tue Oct 23 2012 Peter Hatina <phatina@redhat.com> - 0.1-5 * Tue Oct 23 2012 Peter Hatina <phatina@redhat.com> - 0.1-5
- changed license to GPLv2 - changed license to GPLv2