Bump version (0.6.1) [1/2]

This commit is contained in:
Alex Kotov 2022-12-05 17:46:41 +04:00
parent e369c16e0d
commit dfaf233b1a
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
9 changed files with 23 additions and 17 deletions

View File

@ -1,9 +1,3 @@
2022-12-05 Alex Kotov <kotovalexarian@gmail.com> 2022-12-05 Alex Kotov <kotovalexarian@gmail.com>
* configure.ac: Fix a bug with building for a freestanding environment libkernaux 0.6.1 released
* 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 <kotovalexarian@gmail.com>
libkernaux 0.6.0 released

13
NEWS.md
View File

@ -3,6 +3,19 @@ Releases
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
0.6.0 (2022-12-04) 0.6.0 (2022-12-04)
------------------ ------------------

View File

@ -1 +1 @@
0.6.0 0.6.1

View File

@ -19,8 +19,7 @@ MRuby::Build.new do |conf|
# ... # ...
conf.gem github: 'tailix/libkernaux', conf.gem github: 'tailix/libkernaux',
path: 'bindings/mruby', path: 'bindings/mruby',
branch: 'v0.6.0', branch: 'v0.6.1'
checksum_hash: '7285d9dfe9811befd1901fd5d8230191d0c433b0'
# ... # ...
end end
``` ```

View File

@ -1,5 +1,5 @@
MRuby::Gem::Specification.new 'mruby-kernaux' do |spec| MRuby::Gem::Specification.new 'mruby-kernaux' do |spec|
spec.version = '0.6.0' spec.version = '0.6.1'
spec.license = 'MIT' spec.license = 'MIT'
spec.homepage = spec.homepage =
'https://github.com/tailix/libkernaux/tree/master/bindings/ruby' 'https://github.com/tailix/libkernaux/tree/master/bindings/ruby'

View File

@ -15,7 +15,7 @@ Install
Add the following to your `Gemfile`: Add the following to your `Gemfile`:
```ruby ```ruby
gem 'kernaux', '~> 0.6.0' gem 'kernaux', '~> 0.6.1'
``` ```
Or add the following to your `*.gemspec`: Or add the following to your `*.gemspec`:
@ -23,7 +23,7 @@ Or add the following to your `*.gemspec`:
```ruby ```ruby
Gem::Specification.new do |spec| Gem::Specification.new do |spec|
# ... # ...
spec.add_runtime_dependency 'kernaux', '~> 0.6.0' spec.add_runtime_dependency 'kernaux', '~> 0.6.1'
# ... # ...
end end
``` ```

View File

@ -2,7 +2,7 @@
module KernAux module KernAux
# Gem version. # Gem version.
VERSION = '0.6.0' VERSION = '0.6.1'
## ##
# This module includes functions to determine if specific features are # This module includes functions to determine if specific features are

View File

@ -1,6 +1,6 @@
[package] [package]
name = "kernaux-sys" name = "kernaux-sys"
version = "0.6.0" version = "0.6.1"
authors = ["Alex Kotov <kotovalexarian@gmail.com>"] authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2021" edition = "2021"
description = "Unsafe no-std binding to libkernaux - auxiliary library for kernel development" description = "Unsafe no-std binding to libkernaux - auxiliary library for kernel development"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "kernaux" name = "kernaux"
version = "0.6.0" version = "0.6.1"
authors = ["Alex Kotov <kotovalexarian@gmail.com>"] authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
edition = "2021" edition = "2021"
description = "Safe binding to libkernaux - auxiliary library for kernel development" description = "Safe binding to libkernaux - auxiliary library for kernel development"
@ -21,7 +21,7 @@ ntoa = ["kernaux-sys/ntoa"]
ctor = "0.1.22" ctor = "0.1.22"
[dependencies.kernaux-sys] [dependencies.kernaux-sys]
version = "0.6.0" version = "0.6.1"
default-features = false default-features = false
path = "../kernaux-sys" path = "../kernaux-sys"