-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
2676c04
commit bab58f4
Showing
11 changed files
with
49 additions
and
23 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,18 +1,13 @@ | ||
2022-05-28 Alex Kotov <[email protected]> | ||
|
||
* include/kernaux/printf_fmt.h: Change API | ||
libkernaux 0.3.0 released | ||
|
||
2022-05-24 Alex Kotov <[email protected]> | ||
|
||
* src/multiboot2/info_is_valid.c: Fix division by zero | ||
* configure.ac: Test options made stable | ||
* configure.ac: Feature "bloat" made stable | ||
* src/: Use assertions everywhere (closes #14) | ||
|
||
2022-02-10 Alex Kotov <[email protected]> | ||
|
||
* configure.ac: Normalize args | ||
|
||
2022-02-02 Alex Kotov <[email protected]> | ||
|
||
* configure.ac: Generate position-independent code by default, disable with | ||
|
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
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
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
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
|
||
module KernAux | ||
# Gem version. | ||
VERSION = '0.2.0' | ||
VERSION = '0.3.0' | ||
end |
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 @@ | ||
[package] | ||
name = "kernaux-sys" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Alex Kotov <[email protected]>"] | ||
edition = "2021" | ||
description = "Unsafe no-std binding to libkernaux - auxiliary library for kernel development" | ||
|
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 @@ | ||
[package] | ||
name = "kernaux" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Alex Kotov <[email protected]>"] | ||
edition = "2021" | ||
description = "Safe binding to libkernaux - auxiliary library for kernel development" | ||
|
@@ -13,5 +13,5 @@ categories = ["api-bindings", "embedded", "parsing"] | |
publish = true | ||
|
||
[dependencies.kernaux-sys] | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
path = "../kernaux-sys" |