aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-rw-r--r--Makefile2
-rw-r--r--meson.build2
3 files changed, 4 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d4c935b..1c118f4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,7 @@ 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.3.0] - 2020-04-22
### Added
@@ -17,8 +17,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `slirp_version_string()` now has the git sha suffix when building form git
- Limit DNS redirection to port 53 #16
-### Deprecated
-
### Fixed
- Fix build regression with mingw & NetBSD
@@ -91,7 +89,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.2.0...master
+[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
[4.0.0]: https://gitlab.freedesktop.org/slirp/libslirp/commits/v4.0.0
diff --git a/Makefile b/Makefile
index 8857b41..c34cffe 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ BUILD_DIR ?= .
LIBSLIRP = $(BUILD_DIR)/libslirp.a
SLIRP_MAJOR_VERSION = 4
-SLIRP_MINOR_VERSION = 2
+SLIRP_MINOR_VERSION = 3
SLIRP_MICRO_VERSION = 0
SLIRP_VERSION_STRING = "$(SLIRP_MAJOR_VERSION).$(SLIRP_MINOR_VERSION).$(SLIRP_MICRO_VERSION)-git"
diff --git a/meson.build b/meson.build
index 3a27149..2e48fd8 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 = 0
+lt_revision = 1
lt_age = 2
lt_version = '@0@.@1@.@2@'.format(lt_current - lt_age, lt_age, lt_revision)