From 529123e8d1c4c73f9ad56bba797dc8e738dc9a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20F=C3=A4rnstrand?= Date: Tue, 27 Oct 2020 15:05:42 +0100 Subject: [PATCH] Bump version to 0.3.1 --- CHANGELOG.md | 8 ++++++-- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9c7930..1408a16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] + + +## [0.3.1] - 2020-10-27 ### Added - Add support for service description. (See: `Service::set_description`) ### Fixed -- Fix segmentation fault in `Service` functions, that query service config, by moving buffer - allocation on heap. +- Fix segmentation fault in `Service` functions, that query service config, by moving buffer + allocation to heap. ## [0.3.0] - 2020-06-18 @@ -30,6 +33,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. `Duration::as_millis()` and the `TryFrom` trait. - Breaking: `ServiceManager::create_service()` now expects a borrowed `ServiceInfo` argument. + ## [0.2.0] - 2019-04-01 ### Added - Add `ServiceExitCode::NO_ERROR` constant for easy access to the success value. diff --git a/Cargo.toml b/Cargo.toml index 969873b..1198469 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-service" -version = "0.3.0" +version = "0.3.1" description = "A crate that provides facilities for management and implementation of windows services" readme = "README.md" authors = ["Mullvad VPN"]