Skip to content

Commit

Permalink
Bump version (0.6.1) [1/2]
Browse files Browse the repository at this point in the history
  • Loading branch information
kotovalexarian committed Dec 5, 2022
1 parent e369c16 commit dfaf233
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 17 deletions.
8 changes: 1 addition & 7 deletions ChangeLog
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
13 changes: 13 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
3 changes: 1 addition & 2 deletions bindings/mruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
2 changes: 1 addition & 1 deletion bindings/mruby/mrbgem.rake
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 2 additions & 2 deletions bindings/ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ 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`:

```ruby
Gem::Specification.new do |spec|
# ...
spec.add_runtime_dependency 'kernaux', '~> 0.6.0'
spec.add_runtime_dependency 'kernaux', '~> 0.6.1'
# ...
end
```
2 changes: 1 addition & 1 deletion bindings/ruby/lib/kernaux/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bindings/rust/kernaux-sys/Cargo.toml
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"
Expand Down
4 changes: 2 additions & 2 deletions bindings/rust/kernaux/Cargo.toml
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"
Expand All @@ -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"

Expand Down

0 comments on commit dfaf233

Please sign in to comment.