-
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
4d493ba
commit 1cfff3f
Showing
9 changed files
with
48 additions
and
70 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,62 +1,3 @@ | ||
2022-12-23 Alex Kotov <[email protected]> | ||
|
||
* configure.ac: Feature "--(enable|disable)-pkg-config" has been added | ||
|
||
2022-12-22 Alex Kotov <[email protected]> | ||
|
||
* include/kernaux/memmap.h: Complete rewrite | ||
|
||
2022-12-21 Alex Kotov <[email protected]> | ||
|
||
* configure.ac: Rename feature "--(enable|disable)-debug" to | ||
"--(enable|disable)-assert" | ||
* include/: Definition "KERNAUX_DEBUG" has been removed | ||
* include/kernaux/runtime.h: New header | ||
* include/kernaux/assert.h: Removed header | ||
|
||
2022-12-19 Alex Kotov <[email protected]> | ||
|
||
* src/multiboot2/*_print.c: Print Multiboot 2 ELF section headers | ||
|
||
2022-12-17 Alex Kotov <[email protected]> | ||
|
||
* configure.ac: Feature "--(enable|disable)-fixtures" has been added | ||
* src/multiboot2/*_print.c: Print some values in hex | ||
|
||
2022-12-16 Alex Kotov <[email protected]> | ||
|
||
* configure.ac: Package "--with[out]-multiboot2" has been added | ||
* include/kernaux/multiboot2.h: Has been made stable | ||
|
||
2022-12-14 Alex Kotov <[email protected]> | ||
|
||
* configure.ac: Enable shared library | ||
|
||
2022-12-13 Alex Kotov <[email protected]> | ||
|
||
* tests/Makefile.am: Fix FreeBSD builds | ||
|
||
2022-12-12 Alex Kotov <[email protected]> | ||
|
||
* examples/Makefile.am: Fix builds without pthreads | ||
* include/: Non-conditional headers (except <kernaux/version.h>) | ||
|
||
2022-12-11 Alex Kotov <[email protected]> | ||
|
||
* include/kernaux/macro.h: Macro "KERNAUX_STATIC_TEST" has been added | ||
|
||
2022-12-10 Alex Kotov <[email protected]> | ||
|
||
* include/kernaux/macro.h: Macros "KERNAUX_CAST_(VAR|CONST)" have been added | ||
|
||
2022-12-09 Alex Kotov <[email protected]> | ||
|
||
* include/kernaux/generic/display.h: The header has been added | ||
|
||
2022-12-08 Alex Kotov <[email protected]> | ||
|
||
* include/kernaux/*.h: Definition "KERNAUX_BITFIELDS" has been added | ||
|
||
2022-12-05 Alex Kotov <[email protected]> | ||
|
||
libkernaux 0.6.1 released | ||
libkernaux 0.7.0 released |
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 +1 @@ | ||
0.6.1 | ||
0.7.0 |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kernaux-sys" | ||
version = "0.6.1" | ||
version = "0.7.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.6.1" | ||
version = "0.7.0" | ||
authors = ["Alex Kotov <[email protected]>"] | ||
edition = "2021" | ||
description = "Safe binding to libkernaux - auxiliary library for kernel development" | ||
|
@@ -21,7 +21,7 @@ ntoa = ["kernaux-sys/ntoa"] | |
ctor = "0.1.22" | ||
|
||
[dependencies.kernaux-sys] | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
default-features = false | ||
path = "../kernaux-sys" | ||
|
||
|