2022-01-23 14:04:21 -05:00
|
|
|
Releases
|
|
|
|
========
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-12-05 08:46:41 -05:00
|
|
|
0.6.1 (2022-12-05)
|
|
|
|
------------------
|
|
|
|
|
|
|
|
12 files changed, 111 insertions(+), 110 deletions(-)
|
|
|
|
|
|
|
|
### Other changes
|
|
|
|
|
|
|
|
* `./configure` - fix a bug with building for a freestanding environment
|
|
|
|
* `Makefile` - fix cppcheck in out-of-root builds
|
|
|
|
* `Makefile` - fix Python tests if out-of-root builds
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-12-03 17:08:26 -05:00
|
|
|
0.6.0 (2022-12-04)
|
|
|
|
------------------
|
|
|
|
|
|
|
|
121 files changed, 1444 insertions(+), 1806 deletions(-)
|
|
|
|
|
|
|
|
### Breaking changes
|
|
|
|
|
|
|
|
* `./configure` - features `--enable-tests*` have been renamed
|
|
|
|
to `--enable-checks*`.
|
|
|
|
* `<kernaux/macro.h>` - macro `KERNAUX_PACKING_ATTR` has been renamed
|
|
|
|
to `KERNAUX_PACKED`.
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
* `./configure` - feature `--enable-checks-cppcheck` has been added.
|
|
|
|
* `Makefile` - task `check-cppcheck` has been added.
|
|
|
|
* `<kernaux/macro.h>` - macros `KERNAUX_ALIGNED`, `KERNAUX_ASM`,
|
|
|
|
`KERNAUX_NORETURN`, `KERNAUX_PRINTF`, `KERNAUX_RETURNS_TWICE`,
|
|
|
|
`KERNAUX_SECTION`, `KERNAUX_UNUSED`, `KERNAUX_USED` have been added.
|
|
|
|
* `<kernaux/printf_fmt.h>` - new header. It's printf format parser.
|
|
|
|
|
|
|
|
### Other changes
|
|
|
|
|
|
|
|
* `<kernaux/free_list.h>` - fix a bug that was making the allocator unusable.
|
|
|
|
* `<kernaux/printf.h>` - fix displaying floating-point numbers with big
|
|
|
|
precision.
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-11-26 15:12:57 -05:00
|
|
|
0.5.0 (2022-11-26)
|
|
|
|
------------------
|
|
|
|
|
|
|
|
138 files changed, 2962 insertions(+), 1741 deletions(-)
|
|
|
|
|
|
|
|
### Breaking changes
|
|
|
|
|
2022-12-03 17:08:26 -05:00
|
|
|
* `./configure` - package `--with[out]-io` has been removed.
|
2022-11-26 15:12:57 -05:00
|
|
|
* `<kernaux/io.h>` - the header has been removed.
|
2022-12-03 17:08:26 -05:00
|
|
|
* `<kernaux/printf.h>` - the API of the functions functions `[v]fprintf` has
|
2022-11-26 15:12:57 -05:00
|
|
|
been changed.
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
* `./configure` - package `--with[out]-asm` has been added.
|
|
|
|
* `./configure` - packages `--with[out]-arch-(all|i386|riscv64|x86-64)` have
|
|
|
|
been added.
|
|
|
|
* `./configure` - package `--with[out]-drivers` has been added.
|
|
|
|
* `./configure` - package `--with[out]-free-list` has been added.
|
|
|
|
* `<kernaux/free_list.h>` - new header. It's a free list memory allocator.
|
|
|
|
* `<kernaux/macro.h>` - new header. It's a set of macros.
|
|
|
|
* `<kernaux/macro.h>` - macro `KERNAUX_PRIVATE_FIELD` has been added.
|
|
|
|
* `<kernaux/macro.h>` - macro `KERNAUX_PROTECTED_FIELD` has been added.
|
|
|
|
* `<kernaux/macro.h>` - macros `KERNAUX_BITS[8|16|32|64]` have been added.
|
|
|
|
* `<kernaux/macro.h>` - macros `KERNAUX_CONTAINER_OF` have been added.
|
|
|
|
* `<kernaux/generic/malloc.h>` - new header. It's a generic memory allocator
|
|
|
|
interface.
|
|
|
|
* `<kernaux/generic/mutex.h>` - new header. It's a generic mutex interface.
|
|
|
|
* Definition `KERNAUX_ACCESS_PRIVATE` has been added.
|
|
|
|
* Definition `KERNAUX_ACCESS_PROTECTED` has been added.
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-06-16 11:27:48 -04:00
|
|
|
0.4.0 (2022-06-16)
|
|
|
|
------------------
|
|
|
|
|
|
|
|
225 files changed, 8625 insertions(+), 3744 deletions(-)
|
|
|
|
|
|
|
|
### Breaking changes
|
|
|
|
|
|
|
|
* `./configure` - feature `--(enable|disable)-bloat` has been removed.
|
|
|
|
* `./configure` - feature `--(enable|disable)-pic` has been removed.
|
|
|
|
* `<kernaux/assert.h>` - API has been completely changed.
|
|
|
|
* `<kernaux/libc.h>` - header has been removed.
|
|
|
|
* `<kernaux/ntoa.h>` - API has been completely changed.
|
|
|
|
* `<kernaux/printf.h>` - Easter egg has been removed.
|
2022-12-03 17:08:26 -05:00
|
|
|
* `<kernaux/printf.h>` - functions `[v]printf` have been renamed to `[v]fprintf`,
|
2022-06-16 11:27:48 -04:00
|
|
|
API has been changed.
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
* `./configure` - new feature `--(enable|disable)-debug`.
|
|
|
|
* `./configure` - new package `--with[out]-io`.
|
|
|
|
* `./configure` - new package `--with[out]-memmap`.
|
|
|
|
* `<kernaux/memmap.h>` - new header. It's a memory map.
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-05-28 06:00:59 -04:00
|
|
|
0.3.0 (2022-05-28)
|
|
|
|
------------------
|
|
|
|
|
2022-05-30 16:50:27 -04:00
|
|
|
134 files changed, 6149 insertions(+), 1770 deletions(-)
|
|
|
|
|
2022-05-28 06:00:59 -04:00
|
|
|
### Breaking changes
|
|
|
|
|
|
|
|
* `<kernaux/assert.h>` - a semicolon is required after macros.
|
|
|
|
* `<kernaux/assert.h>` - the constant `KERNAUX_ITOA_BUFFER_SIZE` is renamed to
|
|
|
|
`KERNAUX_ITOA10_BUFFER_SIZE`.
|
|
|
|
|
|
|
|
### New features
|
|
|
|
|
|
|
|
* `./configure` - testing may be enabled with `--enable-tests`,
|
|
|
|
`--enable-tests-all`, `--enable-tests-python`.
|
|
|
|
* `./configure` - the heavy binary data may be disabled with `--disable-bloat`.
|
|
|
|
* `./configure` - position-independent code is generated by default, disable
|
|
|
|
with `--disable-pic`.
|
|
|
|
* `./configure` - compiler warnings turn into errors by default, disable with
|
|
|
|
`--disable-werror`.
|
|
|
|
* `<kernaux/libc.h>` - added functions `atoi`, `isdigit`, `isspace`.
|
|
|
|
* `<kernaux/ntoa.h>` - added functions `kernaux_[u|i]toa`, `kernaux_[u|i]toa16`
|
|
|
|
and related constants.
|
|
|
|
|
|
|
|
### Other changes
|
|
|
|
|
|
|
|
* Assertions are used more broadly.
|
|
|
|
* `<kernaux.h>` - the header is now generated from template depending on
|
2022-05-28 08:54:50 -04:00
|
|
|
configuration options, so you may safely include it when some packages are
|
2022-05-28 06:00:59 -04:00
|
|
|
missing, it won't cause compilation error.
|
|
|
|
* `<kernaux/printf.h>` - a potential buffer overflow is fixed.
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-01-23 14:04:21 -05:00
|
|
|
0.2.0 (2022-01-22)
|
|
|
|
------------------
|
|
|
|
|
2022-05-30 16:50:19 -04:00
|
|
|
51 files changed, 1647 insertions(+), 501 deletions(-)
|
|
|
|
|
2022-01-23 14:04:21 -05:00
|
|
|
### Breaking changes
|
|
|
|
|
|
|
|
* `./configure` - removed options to disable panic calls and returns in
|
|
|
|
`<kernaux/assert.h>`.
|
2022-01-23 14:08:32 -05:00
|
|
|
* `<kernaux/assert.h>` - removed preprocessor directives that can disable panic
|
2022-01-23 14:04:21 -05:00
|
|
|
calls and returns.
|
|
|
|
|
2022-01-23 14:15:26 -05:00
|
|
|
### New features
|
2022-01-23 14:04:21 -05:00
|
|
|
|
2022-01-23 14:15:26 -05:00
|
|
|
* `<kernaux/cmdline.h>` is stable now. It's a simple command line parser.
|
2022-01-23 14:04:21 -05:00
|
|
|
|
|
|
|
### Other changes
|
|
|
|
|
|
|
|
* Now `./configure` options also follow semantic versioning.
|
|
|
|
* Bug fixes in `<kernaux/printf.h>`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
0.1.0 (2022-01-20)
|
|
|
|
------------------
|
|
|
|
|
|
|
|
Initial release.
|