From 18fb2d3879459e7380669becd860e4c52447acbf Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sun, 25 Apr 2021 23:39:26 -0600 Subject: [PATCH] Bump version to 0.9.36 --- CHANGELOG.md | 7 ++++++- README.md | 2 +- shard.yml | 2 +- src/spectator.cr | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b03ad59..bd81cf4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ 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). +## [0.9.36] - 2021-04-22 +### Fixed +- Remove old workaround that prevented compilation on Windows. [#58](https://gitlab.com/arctic-fox/spectator/-/issues/58) + ## [0.9.35] - 2021-04-18 ### Fixed - Allow types stored in variables or returned by methods in `be_a` (and variants), not just type literals. [#25](https://github.com/icy-arctic-fox/spectator/issues/25) @@ -253,7 +257,8 @@ This has been changed so that it compiles and raises an error at runtime with a First version ready for public use. -[Unreleased]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.35...HEAD +[Unreleased]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.36...HEAD +[0.9.35]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.35...v0.9.36 [0.9.35]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.34...v0.9.35 [0.9.34]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.33...v0.9.34 [0.9.33]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.32...v0.9.33 diff --git a/README.md b/README.md index c30a59c..082c951 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Add this to your application's `shard.yml`: development_dependencies: spectator: gitlab: arctic-fox/spectator - version: ~> 0.9.35 + version: ~> 0.9.36 ``` Usage diff --git a/shard.yml b/shard.yml index 3b54376..c545790 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: spectator -version: 0.9.35 +version: 0.9.36 description: | A feature-rich spec testing framework for Crystal with similarities to RSpec. diff --git a/src/spectator.cr b/src/spectator.cr index bc9ef77..3f3619b 100644 --- a/src/spectator.cr +++ b/src/spectator.cr @@ -6,7 +6,7 @@ module Spectator extend self # Current version of the Spectator library. - VERSION = "0.9.35" + VERSION = "0.9.36" # Top-level describe method. # All specs in a file must be wrapped in this call.