From 376187c4b14c795763d472214812826eebe7e9c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Wed, 8 Jul 2020 12:12:59 +0400 Subject: Release v4.3.1 --- CHANGELOG.md | 15 ++++++++++----- Makefile | 2 +- meson.build | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01649e2..5f83e27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,16 +5,21 @@ 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 +## [4.3.1] - 2020-07-08 ### Changed -### Deprecated + - A silent truncation could occur in `slirp_fmt()`, which will now print a + critical message. See also #22. ### Fixed + - CVE-2020-10756 - Drop bogus IPv6 messages that could lead to data leakage. + See !44 and !42. + - Fix win32 builds by using the SLIRP_PACKED definition. + - Various coverity scan errors fixed. !41 + - Fix new GCC warnings. !43 + ## [4.3.0] - 2020-04-22 ### Added @@ -99,7 +104,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.0...master +[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 [4.1.0]: https://gitlab.freedesktop.org/slirp/libslirp/compare/v4.0.0...v4.1.0 diff --git a/Makefile b/Makefile index c34cffe..1e48f35 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ BUILD_DIR ?= . LIBSLIRP = $(BUILD_DIR)/libslirp.a SLIRP_MAJOR_VERSION = 4 SLIRP_MINOR_VERSION = 3 -SLIRP_MICRO_VERSION = 0 +SLIRP_MICRO_VERSION = 1 SLIRP_VERSION_STRING = "$(SLIRP_MAJOR_VERSION).$(SLIRP_MINOR_VERSION).$(SLIRP_MICRO_VERSION)-git" all: $(LIBSLIRP) diff --git a/meson.build b/meson.build index 2e48fd8..922d602 100644 --- a/meson.build +++ b/meson.build @@ -37,7 +37,7 @@ conf.set_quoted('SLIRP_VERSION_STRING', version) # fixed, change: # REVISION += 1 lt_current = 2 -lt_revision = 1 +lt_revision = 2 lt_age = 2 lt_version = '@0@.@1@.@2@'.format(lt_current - lt_age, lt_age, lt_revision) -- cgit v1.1