From a2066b2eea68246d02283f529d66f68ace034363 Mon Sep 17 00:00:00 2001 From: Thomas Nieto <38873752+ThomasNieto@users.noreply.github.com> Date: Fri, 9 May 2025 23:50:03 -0500 Subject: [PATCH] Update for v0.2.0 --- CHANGELOG.md | 20 +++++++++++++++++--- LICENSE | 2 +- src/AnyPackageDsc.psd1 | 4 ++-- 3 files changed, 20 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9835f3..bcd4e3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,24 @@ 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). +The format is based on [Keep a Changelog][keep-a-changelog], +and this project adheres to [Semantic Versioning][semver]. + +[keep-a-changelog]: https://keepachangelog.com/en/1.0.0/ +[semver]: https://semver.org/spec/v2.0.0.html ## [Unreleased] +## [0.2.0] - 2025-05-09 + +### Added + +- Add export (#24) + +### Fixed + +- Fix source location test when set to absent (#27) + ## [0.1.2] - 2023-07-13 ### Fixed @@ -27,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[Unreleased]: https://github.com/anypackage/dsc/compare/v0.1.2...HEAD +[Unreleased]: https://github.com/anypackage/dsc/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/anypackage/dsc/releases/tag/v0.2.0 [0.1.2]: https://github.com/anypackage/dsc/releases/tag/v0.1.2 [0.1.1]: https://github.com/anypackage/dsc/releases/tag/v0.1.1 [0.1.0]: https://github.com/anypackage/dsc/releases/tag/v0.1.0 diff --git a/LICENSE b/LICENSE index 0fdf7f2..4f9152a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Thomas Nieto +Copyright (c) 2025 Thomas Nieto Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/AnyPackageDsc.psd1 b/src/AnyPackageDsc.psd1 index a9afc38..3794451 100644 --- a/src/AnyPackageDsc.psd1 +++ b/src/AnyPackageDsc.psd1 @@ -1,10 +1,10 @@ @{ RootModule = 'AnyPackageDsc.psm1' - ModuleVersion = '0.1.2' + ModuleVersion = '0.2.0' CompatiblePSEditions = @('Desktop', 'Core') GUID = 'e5131fb7-67c1-4068-b20b-9bc8b03d6976' Author = 'Thomas Nieto' - Copyright = '(c) 2023 Thomas Nieto. All rights reserved.' + Copyright = '(c) 2025 Thomas Nieto. All rights reserved.' Description = 'AnyPackage DSC resources.' RequiredModules = @('AnyPackage') PowerShellVersion = '5.1'