Skip to content

Commit

Permalink
Release 0.5.2 (#42)
Browse files Browse the repository at this point in the history
Small bugfix, but otherwise just build-time/packaging changes
  • Loading branch information
maxfierke committed Apr 20, 2023
1 parent fca904f commit cb12bb7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

### Bugfixes

### Removed

## [0.5.2] - 2023-04-19

### Added

### Changed

- Switched to PCRE2 instead of PCRE for regular expressions (which is EOL)
- Updated bundled wraps for OpenSSL and zlib (affects source compiling only)

### Bugfixes
Expand All @@ -18,6 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

- Drop support for macOS < 12 (might still work, but no longer testing)

## [0.5.1] - 2022-11-01

### Changed
Expand Down Expand Up @@ -100,7 +113,8 @@ 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
[Unreleased]: https://github.com/maxfierke/mstrap/compare/v0.5.2...HEAD
[0.5.2]: https://github.com/maxfierke/mstrap/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/maxfierke/mstrap/compare/v0.5.0...v0.5.1
[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
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project('mstrap',
'c',
meson_version : '>= 0.60.0',
license : 'MIT',
version : '0.5.1',
version : '0.5.2',
default_options : [
'buildtype=debugoptimized',
'default_library=static'
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mstrap
version: 0.5.1
version: 0.5.2

authors:
- Max Fierke <max@maxfierke.com>
Expand Down
2 changes: 1 addition & 1 deletion src/mstrap/version.cr
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ module MStrap
COMPILED_AT = {{`date -u`.chomp.stringify}}

# `mstrap` version
VERSION = "0.5.1"
VERSION = {{`shards version`.chomp.stringify}}
end

0 comments on commit cb12bb7

Please sign in to comment.