diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2021-06-18 11:47:56 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2021-06-18 11:49:56 +0400 |
commit | cceced0cce9d578ed01db68edf31af78eb66f858 (patch) | |
tree | 171ebdf644f705f07910ef43c325c3f88e5743d6 | |
parent | 76da4cca02e8dbdcb60e6365576073017f652293 (diff) | |
download | slirp-4.6.1.zip slirp-4.6.1.tar.gz slirp-4.6.1.tar.bz2 |
Release v4.6.1v4.6.1
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | meson.build | 4 |
2 files changed, 7 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d20c0b1..bd4845c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,16 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] - -### Added - -### Changed - -### Deprecated +## [4.6.1] - 2021-06-18 ### Fixed + - Fix DHCP regression introduced in 4.6.0. !95 + ## [4.6.0] - 2021-06-14 ### Added @@ -176,7 +172,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Standalone project, removing any QEMU dependency. - License clarifications. -[Unreleased]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.6.0...master +[Unreleased]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.6.1...master +[4.6.1]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.6.0...v4.6.1 [4.6.0]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.5.0...v4.6.0 [4.5.0]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.4.0...v4.5.0 [4.4.0]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.3.1...v4.4.0 diff --git a/meson.build b/meson.build index b8e6ded..cb1396a 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libslirp', 'c', - version : '4.6.0', + version : '4.6.1', license : 'BSD-3-Clause', default_options : ['warning_level=1', 'c_std=gnu99'], meson_version : '>= 0.50', @@ -45,7 +45,7 @@ conf.set_quoted('SLIRP_VERSION_STRING', full_version + get_option('version_suffi # fixed, change: # REVISION += 1 lt_current = 3 -lt_revision = 0 +lt_revision = 1 lt_age = 3 lt_version = '@0@.@1@.@2@'.format(lt_current - lt_age, lt_age, lt_revision) |