-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Peter Jones <[email protected]>
- Loading branch information
Showing
2 changed files
with
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
MAJOR_VERSION = 0 | ||
MINOR_VERSION = 20 | ||
MINOR_VERSION = 21 | ||
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION) |
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 |
---|---|---|
|
@@ -54,7 +54,7 @@ rm -rf $RPM_BUILD_ROOT | |
%files | ||
%{!?_licensedir:%global license %%doc} | ||
%license COPYING | ||
%doc README | ||
%doc README.md | ||
%{_bindir}/efivar | ||
%{_mandir}/man1/* | ||
|
||
|
@@ -68,6 +68,17 @@ rm -rf $RPM_BUILD_ROOT | |
%{_libdir}/*.so.* | ||
|
||
%changelog | ||
* Mon Jul 13 2015 Peter Jones <[email protected]> - 0.21-1 | ||
- Rename "make test" so packagers don't think it's a good idea to run it | ||
during builds. | ||
- Error check sizes in vars_get_variable() | ||
- Fix some file size comparisons | ||
- make SONAME reflect the correct values. | ||
- Fix some uses of "const" | ||
- Compile with -O2 by default | ||
- Fix some strict-aliasing violations | ||
- Fix some of the .pc files and how we do linking to work better. | ||
|
||
* Tue Jun 02 2015 Peter Jones <[email protected]> - 0.20-1 | ||
- Update to 0.20 | ||
- Make sure tester is build with the right link order for libraries. | ||
|