Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/AnyPackageDsc.psd1
Original file line number Diff line number Diff line change
@@ -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'
Expand Down