mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
Bump version (0.6.1) [1/2]
This commit is contained in:
parent
e369c16e0d
commit
dfaf233b1a
9 changed files with 23 additions and 17 deletions
|
@ -1,9 +1,3 @@
|
|||
2022-12-05 Alex Kotov <kotovalexarian@gmail.com>
|
||||
|
||||
* 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 <kotovalexarian@gmail.com>
|
||||
|
||||
libkernaux 0.6.0 released
|
||||
libkernaux 0.6.1 released
|
||||
|
|
13
NEWS.md
13
NEWS.md
|
@ -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)
|
||||
------------------
|
||||
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
0.6.0
|
||||
0.6.1
|
||||
|
|
|
@ -19,8 +19,7 @@ MRuby::Build.new do |conf|
|
|||
# ...
|
||||
conf.gem github: 'tailix/libkernaux',
|
||||
path: 'bindings/mruby',
|
||||
branch: 'v0.6.0',
|
||||
checksum_hash: '7285d9dfe9811befd1901fd5d8230191d0c433b0'
|
||||
branch: 'v0.6.1'
|
||||
# ...
|
||||
end
|
||||
```
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
MRuby::Gem::Specification.new 'mruby-kernaux' do |spec|
|
||||
spec.version = '0.6.0'
|
||||
spec.version = '0.6.1'
|
||||
spec.license = 'MIT'
|
||||
spec.homepage =
|
||||
'https://github.com/tailix/libkernaux/tree/master/bindings/ruby'
|
||||
|
|
|
@ -15,7 +15,7 @@ Install
|
|||
Add the following to your `Gemfile`:
|
||||
|
||||
```ruby
|
||||
gem 'kernaux', '~> 0.6.0'
|
||||
gem 'kernaux', '~> 0.6.1'
|
||||
```
|
||||
|
||||
Or add the following to your `*.gemspec`:
|
||||
|
@ -23,7 +23,7 @@ Or add the following to your `*.gemspec`:
|
|||
```ruby
|
||||
Gem::Specification.new do |spec|
|
||||
# ...
|
||||
spec.add_runtime_dependency 'kernaux', '~> 0.6.0'
|
||||
spec.add_runtime_dependency 'kernaux', '~> 0.6.1'
|
||||
# ...
|
||||
end
|
||||
```
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
module KernAux
|
||||
# Gem version.
|
||||
VERSION = '0.6.0'
|
||||
VERSION = '0.6.1'
|
||||
|
||||
##
|
||||
# This module includes functions to determine if specific features are
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "kernaux-sys"
|
||||
version = "0.6.0"
|
||||
version = "0.6.1"
|
||||
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
|
||||
edition = "2021"
|
||||
description = "Unsafe no-std binding to libkernaux - auxiliary library for kernel development"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "kernaux"
|
||||
version = "0.6.0"
|
||||
version = "0.6.1"
|
||||
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
|
||||
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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue