mirror of
https://github.com/tailix/libkernaux.git
synced 2025-04-14 17:32:55 -04:00
Bump version (0.2.0)
This commit is contained in:
parent
ab5cc91434
commit
50e35b1874
6 changed files with 9 additions and 5 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
* README.md: Configuration options now follow semver
|
||||
* include/kernaux/assert.h: Do not allow to disable asserts and guards
|
||||
* libkernaux 0.2.0 released
|
||||
|
||||
2022-01-21 Alex Kotov <kotovalexarian@gmail.com>
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ zero). Work-in-progress APIs can change at any time.
|
|||
* Architecture-specific code (*work in progress*)
|
||||
* [Declarations](/include/kernaux/arch/)
|
||||
* [Functions](/include/kernaux/asm/)
|
||||
* [Assertions](/include/kernaux/assert.h) (*stable since* **0.1.0**)
|
||||
* [Assertions](/include/kernaux/assert.h) (*stable since* **0.1.0**, *non-breaking since* **0.2.0**)
|
||||
* [Assert: simple](/examples/assert_simple.c)
|
||||
* [Assert: guards](/examples/assert_guards.c)
|
||||
* [Panic: simple](/examples/panic_simple.c)
|
||||
|
@ -49,7 +49,7 @@ zero). Work-in-progress APIs can change at any time.
|
|||
* [Framebuffer](/include/kernaux/framebuffer.h) (*planned*)
|
||||
* USB (*planned*)
|
||||
* Algorithms
|
||||
* [Simple command line parser](/include/kernaux/cmdline.h) (*work in progress*)
|
||||
* [Simple command line parser](/include/kernaux/cmdline.h) (*stable since* **0.2.0**)
|
||||
* [Example](/examples/cmdline.c)
|
||||
* [Page Frame Allocator](/include/kernaux/pfa.h) (*work in progress*)
|
||||
* [Example](/examples/pfa.c)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AC_PREREQ([2.68])
|
||||
AC_INIT([libkernaux],
|
||||
[0.1.0],
|
||||
[0.2.0],
|
||||
[https://github.com/tailix/libkernaux/issues],
|
||||
[libkernaux],
|
||||
[https://github.com/tailix/libkernaux])
|
||||
|
|
|
@ -2,5 +2,5 @@
|
|||
|
||||
module KernAux
|
||||
# Gem version.
|
||||
VERSION = '0.1.0'
|
||||
VERSION = '0.2.0'
|
||||
end
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "kernaux"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
|
||||
edition = "2021"
|
||||
description = "Auxiliary library for kernel development"
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
b80c1d94519a43bd92c2b1a7626bdb5af5aa98dd993b2332d56449b0be7dbc8f libkernaux-0.1.0.tar.gz
|
||||
591b85194f5d37098f5f2697d5090eb01c394e9bc7ac9bf9c53724253d4993d4 kernaux-0.1.0.crate
|
||||
3dffc130b69af284d4c15211027a0e7e39de88e014e1f45e22d726f5b78f7bf6 kernaux-0.1.0.gem
|
||||
00b22e28ecddde5beca8b7d425d91eaf3634ee1d9df0bcf9565938d02353cd49 libkernaux-0.2.0.tar.gz
|
||||
9c7f0cf2107f959b8d154985d2376b8dacf1f58d4b2ea19ea72341c76f132d27 kernaux-0.2.0.crate
|
||||
da532ecef0391bb346d33bc805c4500b4b1b11661d3fbf4378b3e9e168ad1c0d kernaux-0.2.0.gem
|
||||
|
|
Loading…
Add table
Reference in a new issue