aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2020-12-02 12:38:59 +0400
committerMarc-André Lureau <marcandre.lureau@redhat.com>2020-12-02 12:53:16 +0400
commit92413be68914f8cae2f5bad4bf3ab8491dcbc5d7 (patch)
tree985d00846a9248baa7d06dd59e19dfe7258ebc59
parentffc0d5aec8ff394c39bd12859f73ee00a69f3119 (diff)
downloadslirp-92413be68914f8cae2f5bad4bf3ab8491dcbc5d7.zip
slirp-92413be68914f8cae2f5bad4bf3ab8491dcbc5d7.tar.gz
slirp-92413be68914f8cae2f5bad4bf3ab8491dcbc5d7.tar.bz2
Release v4.4.0v4.4.0
-rw-r--r--CHANGELOG.md16
-rw-r--r--meson.build4
2 files changed, 15 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 36c7cc3..8f4db97 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,16 +5,26 @@ 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]
+## [4.4.0] - 2020-12-02
### Added
+ - udp, udp6, icmp: handle TTL value. !48
+ - Enable forwarding ICMP errors. !49
+ - Add DNS resolving for iOS. !54
+
### Changed
-### Deprecated
+ - Improve meson subproject() support. !53
+ - Removed Makefile-based build system. !56
### Fixed
+ - socket: consume empty packets. !55
+ - check pkt_len before reading protocol header (CVE-2020-29129). !57
+ - ip_stripoptions use memmove (fixes undefined behaviour). !47
+ - various Coverity-related changes/fixes.
+
## [4.3.1] - 2020-07-08
### Changed
@@ -114,7 +124,7 @@ 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.3.1...master
+[4.4.0]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.3.1...v4.4.0
[4.3.1]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.3.0...v4.3.1
[4.3.0]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.2.0...v4.3.0
[4.2.0]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.1.0...v4.2.0
diff --git a/meson.build b/meson.build
index cb7fc47..12c12e7 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libslirp', 'c',
- version : '4.3.1',
+ version : '4.4.0',
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 = 2
-lt_revision = 2
+lt_revision = 3
lt_age = 2
lt_version = '@0@.@1@.@2@'.format(lt_current - lt_age, lt_age, lt_revision)