-
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
e369c16
commit dfaf233
Showing
9 changed files
with
23 additions
and
17 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,9 +1,3 @@ | ||
2022-12-05 Alex Kotov <[email protected]> | ||
|
||
* configure.ac: Fix a bug with building for a freestanding environment | ||
* tests/Makefile.am: Fix Python tests in out-of-root builds | ||
* make/checks.am: Fix cppcheck in out-of-root builds | ||
|
||
2022-12-04 Alex Kotov <[email protected]> | ||
|
||
libkernaux 0.6.0 released | ||
libkernaux 0.6.1 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.0 | ||
0.6.1 |
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.0" | ||
version = "0.6.1" | ||
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.0" | ||
version = "0.6.1" | ||
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.0" | ||
version = "0.6.1" | ||
default-features = false | ||
path = "../kernaux-sys" | ||
|
||
|