wardens 0.5.0-rc.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -1
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.5.0]
10
+
9
11
  ### Changed
10
12
 
11
13
  - Wardens is now published with ESM (`type=module`). It should be backwards compatible.
@@ -75,7 +77,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
75
77
  - `mount`/`unmount` hooks to provision resources
76
78
  - `allocate`/`deallocate` for creating hierarchies of resources
77
79
 
78
- [Unreleased]: https://github.com/PsychoLlama/wardens/compare/v0.4.1...HEAD
80
+ [Unreleased]: https://github.com/PsychoLlama/wardens/compare/v0.5.0...HEAD
81
+ [0.5.0]: https://github.com/PsychoLlama/wardens/compare/v0.4.1...v0.5.0
79
82
  [0.4.1]: https://github.com/PsychoLlama/wardens/compare/v0.4.0...v0.4.1
80
83
  [0.4.0]: https://github.com/PsychoLlama/wardens/compare/v0.3.0...v0.4.0
81
84
  [0.3.0]: https://github.com/PsychoLlama/wardens/compare/v0.2.0...v0.3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wardens",
3
- "version": "0.5.0-rc.0",
3
+ "version": "0.5.0",
4
4
  "description": "A framework for resource management",
5
5
  "type": "module",
6
6
  "main": "./dist/wardens.cjs",