Update to 0.065

- New upstream release 0.065
  - Added 'assert' method
  - Added 'visit' method
  - Added support for a negative count for 'lines' to get the last lines of a
    file
  - Fixed tilde expansion if path has spaces
  - Make realpath non-fatal if the parent path exists and only the final path
    component does not (was fatal on Windows and some Unixes)
  - Removed rendundant locking on tempfile use for spewing
  - Work around File::Temp bugs on older ActiveState Windows Perls
    https://bugs.activestate.com/show_bug.cgi?id=104767
  - Fixed SYNOPSIS example
This commit is contained in:
Paul Howarth 2015-03-06 12:31:03 +00:00
parent c3ea76f4a6
commit dee36f85d1
2 changed files with 19 additions and 3 deletions

View File

@ -1,5 +1,5 @@
Name: perl-Path-Tiny
Version: 0.061
Version: 0.065
Release: 1%{?dist}
Summary: File path utility
Group: Development/Libraries
@ -21,6 +21,7 @@ BuildRequires: perl(Digest::SHA) >= 5.45
BuildRequires: perl(Exporter) >= 5.57
BuildRequires: perl(Fcntl)
BuildRequires: perl(File::Copy)
BuildRequires: perl(File::Glob)
BuildRequires: perl(File::Path) >= 2.07
BuildRequires: perl(File::Spec) >= 3.40
BuildRequires: perl(File::stat)
@ -50,6 +51,7 @@ Requires: perl(Digest::MD5)
Requires: perl(Digest::SHA) >= 5.45
Requires: perl(Fcntl)
Requires: perl(File::Copy)
Requires: perl(File::Glob)
Requires: perl(File::Path) >= 2.07
Requires: perl(File::stat)
Requires: perl(File::Temp) >= 0.18
@ -96,9 +98,23 @@ make test
%license LICENSE
%doc Changes CONTRIBUTING.mkdn README
%{perl_vendorlib}/Path/
%{_mandir}/man3/Path::Tiny.3pm*
%{_mandir}/man3/Path::Tiny.3*
%changelog
* Fri Mar 6 2015 Paul Howarth <paul@city-fan.org> - 0.065-1
- Update to 0.065
- Added 'assert' method
- Added 'visit' method
- Added support for a negative count for 'lines' to get the last lines of a
file
- Fixed tilde expansion if path has spaces
- Make realpath non-fatal if the parent path exists and only the final path
component does not (was fatal on Windows and some Unixes)
- Removed rendundant locking on tempfile use for spewing
- Work around File::Temp bugs on older ActiveState Windows Perls
https://bugs.activestate.com/show_bug.cgi?id=104767
- Fixed SYNOPSIS example
* Fri Nov 14 2014 Paul Howarth <paul@city-fan.org> - 0.061-1
- Update to 0.061
- Fixed append_utf8 and append_raw with 'truncate' option

View File

@ -1 +1 @@
b82cb206a44b7408b11b991001c45e49 Path-Tiny-0.061.tar.gz
d0cc4ebe40e639c5c2942fe3abb27fc8 Path-Tiny-0.065.tar.gz