diff --git a/App-MHFS/Changes b/App-MHFS/Changes index fac8562..bd44142 100644 --- a/App-MHFS/Changes +++ b/App-MHFS/Changes @@ -1,4 +1,6 @@ Revision history for App-MHFS, note the CHANGELOG.md of the repository is much more comprehensive +v0.4.0 2022-07-11 + Bump versionfor MHFS release. v0.3.0 2022-06-30 First packaged version, released on an unsuspecting world. diff --git a/App-MHFS/lib/App/MHFS.pm b/App-MHFS/lib/App/MHFS.pm index 9389fc3..839c3f1 100644 --- a/App-MHFS/lib/App/MHFS.pm +++ b/App-MHFS/lib/App/MHFS.pm @@ -6948,7 +6948,7 @@ package MHFS::Plugin::VideoLibrary { } package App::MHFS; #Media Http File Server -use version; our $VERSION = version->declare("v0.3.0"); +use version; our $VERSION = version->declare("v0.4.0"); use strict; use warnings; use feature 'say'; diff --git a/CHANGELOG.md b/CHANGELOG.md index 14a985e..29662a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ # MHFS Changelog -## [Unreleased 0.4.0](https://github.com/G4Vi/MHFS/compare/v0.3.0...dev) - 2022-07-XX +## [0.4.0](https://github.com/G4Vi/MHFS/compare/v0.3.0...v0.4.0) - 2022-07-11 ### Added - Automated builds via github ci `.github/workflows/build.yml` - cpanfile for easier dev and ci operation diff --git a/MHFS-XS/Changes b/MHFS-XS/Changes index 74da2be..4e29300 100644 --- a/MHFS-XS/Changes +++ b/MHFS-XS/Changes @@ -1,4 +1,6 @@ Revision history for MHFS-XS, note the CHANGELOG.md of the repository is much more comprehensive +v0.2.0 2022-07-11 + Fixed compile error when building with non-MULTIPLICITY perl v0.1.0 2022-06-30 First packaged version, released on an unsuspecting world. diff --git a/MHFS-XS/lib/MHFS/XS.pm b/MHFS-XS/lib/MHFS/XS.pm index ca66c7a..0b6f2eb 100644 --- a/MHFS-XS/lib/MHFS/XS.pm +++ b/MHFS-XS/lib/MHFS/XS.pm @@ -3,7 +3,7 @@ package MHFS::XS; use 5.020002; use strict; use warnings; -use version; our $VERSION = version->declare("v0.1.0"); +use version; our $VERSION = version->declare("v0.2.0"); require Exporter;