-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# configure.ac for libbytesize | ||
|
||
AC_INIT([libbytesize], [1.0], [[email protected]]) | ||
AC_INIT([libbytesize], [1.1], [[email protected]]) | ||
|
||
# Disable building static libraries. | ||
# This needs to be set before initializing automake | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 <[email protected]> - 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 <[email protected]> - 1.0-1 | ||
- Make more space for CI status image (vtrefny) | ||
- Include limits.h to make sure ULONG_MAX is defined (vpodzime) | ||
|