From 01672fc073c3b359e871ff4c4e0238085bf229b1 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 10 Jul 2021 23:16:05 -0600 Subject: [PATCH] Bump version to 0.9.40 --- CHANGELOG.md | 11 ++++++++++- README.md | 2 +- shard.yml | 2 +- src/spectator.cr | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f97de68..1204814 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ 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.40] - 2021-07-10 +### Fixed +- Fix stubbing of class methods. +- Fix handling of `no_args` in some cases. + +### Changed +- Better handling and stubbing of `Process.exit`. + ## [0.9.39] - 2021-07-02 ### Fixed - Fix `expect().to receive()` syntax not implicitly stubbing the method. @@ -274,7 +282,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.39...release%2F0.10 +[Unreleased]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.40...release%2F0.10 +[0.9.40]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.39...v0.9.40 [0.9.39]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.38...v0.9.39 [0.9.38]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.37...v0.9.38 [0.9.37]: https://gitlab.com/arctic-fox/spectator/-/compare/v0.9.36...v0.9.37 diff --git a/README.md b/README.md index 7d3cf36..1186e20 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.39 + version: ~> 0.9.40 ``` Usage diff --git a/shard.yml b/shard.yml index 721d79a..bd1f405 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: spectator -version: 0.9.39 +version: 0.9.40 description: | A feature-rich spec testing framework for Crystal with similarities to RSpec. diff --git a/src/spectator.cr b/src/spectator.cr index e3ebf97..7a94fbc 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.39" + VERSION = "0.9.40" # Top-level describe method. # All specs in a file must be wrapped in this call.