From c0b242f15d14b755b3902cbc4eb37793b46a868a Mon Sep 17 00:00:00 2001 From: Max Fierke Date: Thu, 27 Oct 2022 21:21:26 -0500 Subject: [PATCH] Release v0.5.0 --- CHANGELOG.md | 11 +++++++++++ meson.build | 2 +- shard.yml | 2 +- src/mstrap/version.cr | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b844ec..eddd452 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +### Changed + +### Bugfixes + +### Removed + +## [0.5.0] - 2022-10-27 + +### Added + - Added support for Apple Silicon and easier cross-compilation ([#35](https://github.com/maxfierke/mstrap/pull/35)) - Added support for Arch Linux and Manjaro ([#36](https://github.com/maxfierke/mstrap/pull/36)) - Added support for projects syncing with upstream repos ([#38](https://github.com/maxfierke/mstrap/pull/38)) @@ -81,6 +91,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Everything! First public release. [Unreleased]: https://github.com/maxfierke/mstrap/compare/v0.4.0...HEAD +[0.5.0]: https://github.com/maxfierke/mstrap/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/maxfierke/mstrap/compare/v0.3.1...v0.4.0 [0.3.1]: https://github.com/maxfierke/mstrap/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/maxfierke/mstrap/compare/v0.2.9...v0.3.0 diff --git a/meson.build b/meson.build index 643d5cb..3be478f 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('mstrap', 'c', meson_version : '>= 0.60.0', license : 'MIT', - version : '0.4.0', + version : '0.5.0', default_options : [ 'buildtype=debugoptimized', 'default_library=static' diff --git a/shard.yml b/shard.yml index 7f9d0d7..4e8d38b 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: mstrap -version: 0.4.0 +version: 0.5.0 authors: - Max Fierke diff --git a/src/mstrap/version.cr b/src/mstrap/version.cr index 077a574..0a49992 100644 --- a/src/mstrap/version.cr +++ b/src/mstrap/version.cr @@ -3,5 +3,5 @@ module MStrap COMPILED_AT = {{`date -u`.chomp.stringify}} # `mstrap` version - VERSION = "0.4.0" + VERSION = "0.5.0" end