From 553740d07aec0a534cd434412fcff4b24769a46f Mon Sep 17 00:00:00 2001 From: Vratislav Podzimek Date: Thu, 21 Sep 2017 10:13:03 +0200 Subject: [PATCH] New version --- NEWS.rst | 29 +++++++++++++++++++++++++++++ configure.ac | 2 +- dist/libbytesize.spec.in | 9 ++++++++- 3 files changed, 38 insertions(+), 2 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 15691107..ea903764 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,32 @@ +Libbytesize 1.1 +--------------- + +New minor release of the libbytesize library. There are only small changes in +this release and one important bug fix. + +**Notable changes** + +- Fixed parsing size strings with translated units (e.g. "10 Gio" in French). + + +**Full list of changes** + +Vojtech Trefny (3): +- Use only one git tag for new releases +- Fix source and url in spec file +- Add NEWS.rst file + +Vratislav Podzimek (4): +- Add two temporary test files to .gitignore +- Actually translate the units when expected +- Fix the shortlog target +- Sync spec with downstream + +Thanks to all our contributors. + +Vratislav Podzimek, 2017-09-21 + + Libbytesize 1.0 --------------- diff --git a/configure.ac b/configure.ac index fd8e866d..f47ce50e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # configure.ac for libbytesize -AC_INIT([libbytesize], [1.0], [vpodzime@redhat.com]) +AC_INIT([libbytesize], [1.1], [vpodzime@redhat.com]) # Disable building static libraries. # This needs to be set before initializing automake diff --git a/dist/libbytesize.spec.in b/dist/libbytesize.spec.in index 4cf4af0a..e0382910 100644 --- a/dist/libbytesize.spec.in +++ b/dist/libbytesize.spec.in @@ -11,7 +11,7 @@ %endif Name: libbytesize -Version: 1.0 +Version: 1.1 Release: 1%{?dist} Summary: A library for working with sizes in bytes License: LGPLv2+ @@ -110,6 +110,13 @@ find %{buildroot} -type f -name "*.la" | xargs %{__rm} %endif %changelog +* Thu Sep 21 2017 Vratislav Podzimek - 1.1-1 +- Add NEWS.rst file (vtrefny) +- Fix source and url in spec file (vtrefny) +- Use only one git tag for new releases (vtrefny) +- Actually translate the units when expected (vpodzime) +- Add two temporary test files to .gitignore (vpodzime) + * Thu Sep 14 2017 Vratislav Podzimek - 1.0-1 - Make more space for CI status image (vtrefny) - Include limits.h to make sure ULONG_MAX is defined (vpodzime)