From 65e9577de4d524265c2bac627e4d466e62c0a47e Mon Sep 17 00:00:00 2001 From: Aleix Penella Date: Fri, 16 Aug 2024 19:30:30 +0200 Subject: [PATCH] Update release notes with #156 --- CHANGELOG.md | 8 +++++++- RELEASE_NOTES.md | 6 +++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c718635..525b7d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,17 @@ 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] + +### Changed + +- The internal package `internal/executable/os/exec` has been moved to `pkg/execute/exec`, making it public. + ## v2.0.1 (2024-07-10) ### Fixed -- Fixed the String method on the AnsiblePlaybookOptions and AnsibleAdhocOptions structs that does not return the verbose flags correctly. +- Fixed the String method on the AnsiblePlaybookOptions and AnsibleAdhocOptions structs that do not return the verbose flags correctly. ## v2.0.0 (2024-04-20) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 1267794..7a327d1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,7 +1,7 @@ # Release notes -## v2.0.1 (2024-07-10) +## [unreleased] -### Fixed +### Changed -- Fixed the String method on the AnsiblePlaybookOptions and AnsibleAdhocOptions structs that does not return the verbose flags correctly. +- The internal package `internal/executable/os/exec` has been moved to `pkg/execute/exec`, making it public. Along with this change, the `Exec` struct has been renamed to `OsExec`.