From 89ab6aeb7cf21843f0b8eb28bd059392d53cfa6b Mon Sep 17 00:00:00 2001 From: Robert L Carpenter Date: Mon, 1 Oct 2018 13:53:41 -0600 Subject: [PATCH] updates readme, changelog, version --- CHANGELOG.md | 17 ++++++++++++----- README.md | 4 +--- shard.yml | 2 +- src/mosquito/version.cr | 2 +- 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b1c8c4..27599c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,25 @@ -### 2018-08-16 +# Changelog + +## 0.2.1 +### 2018-10-01 +- Logo contributed by @psikoz +- Add several more automated tests +- Add configuration for CI : `make test demo` will run all acceptance criteria +- Add demo section +- Release version 0.2.1 +### 2018-08-16 - Update to specify crystal 0.26 - Add several tests - Add makefile +## 0.2.0 ### 2018-06-22 - - Update to specify crystal-redis 2.0 and crystal 0.25 - Release version 0.2.0 +## 0.1.1 ### 2018-06-08 - - Breaking: Update Mosquito::Model type alias to match updates to Granite - Misc typo fixes and flexibility upgrades - Update Crystal specification 0.23.1 -> .24.2 @@ -18,12 +27,10 @@ - Release version 0.1.1 ### 2018-01-16 - - Use configurable Logger instead of writing directly to stdout - Job classes can now disable rescheduling on failure - Log output is now colorized and formatted to be read by human eyes - BUG: task id was mutating on each save, causing weird logging when tasks reschedule. ### 2017-12 - - PERFORMANCE: adding IDLE_WAIT to prevent slamming redis when the queues are empty. Smarter querying of the queues for work. diff --git a/README.md b/README.md index 9e29aec..53d36e1 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,10 @@ Current Limitations: ## Project State -Updated 2018-09-10 +Updated 2018-10-01 > Sufficient working beta. > -> Most functionality is tested, and it all seems to be working in manual tests. -> > Use in a production environment at your own risk, and please open issues and feature requests. ## Installation diff --git a/shard.yml b/shard.yml index b875ff2..411ec45 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: mosquito -version: 0.2.0 +version: 0.2.1 authors: - Robert L Carpenter diff --git a/src/mosquito/version.cr b/src/mosquito/version.cr index eb0411f..6fbcbb1 100644 --- a/src/mosquito/version.cr +++ b/src/mosquito/version.cr @@ -1,3 +1,3 @@ module Mosquito - VERSION = "0.2.0" + VERSION = "0.2.1" end