From f43d641237aa886fd502f408d207338df6f4b463 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Sun, 18 Aug 2019 22:50:00 +1000 Subject: [PATCH] Bumps to version 0.4.0. --- CHANGELOG.md | 8 ++++++++ shard.yml | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09e9928..481b5cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.4.0] - 2019-08-18 + +### Changed + +- Crystal 0.30.0 deprecated `URI.escape` in favour of `URI.encode_www_form`. Updated this to match the original behaviour (with `space_to_plus: false`). +- Crystal 0.28.0 deprecated `Time.now`. Updated to use `Time.utc` which is actually more correct according to the RFC. +- Crystal 0.29.0 deprecated the behaviour of `Int#/` to return integers. Changed to use `Int#//` instead. + ## [0.3.0] - 2019-07-27 ### Added diff --git a/shard.yml b/shard.yml index 1ac2304..7da2f55 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: crotp -version: 0.3.0 +version: 0.4.0 authors: - Phil Nash @@ -9,6 +9,6 @@ dependencies: github: noumar/base32 branch: master -crystal: 0.28.0 +crystal: 0.30.0 license: MIT