diff --git a/CHANGELOG.md b/CHANGELOG.md index 88fd5d9..09a210f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ 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). +## [1.1.1] + +### Improvements +- Fix link report generation broken by dynamic short link changes +- Suggest and use `Random::Secure` over `Random` eveywhere +- Document `SHORT_ID_SIZE` env var +- Add notes to README for dynamic short link and link report sections +- Update Github Actions to Crystal 1.9.2 + ## [1.1.0] ### Features diff --git a/shard.yml b/shard.yml index 7ee2f80..ef907f6 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: mpngin -version: 1.1.0 +version: 1.1.1 authors: - Adam Radabaugh diff --git a/src/mpngin/version.cr b/src/mpngin/version.cr index e8747a3..587d07c 100644 --- a/src/mpngin/version.cr +++ b/src/mpngin/version.cr @@ -1,3 +1,3 @@ module Mpngin - VERSION = "1.1.0" + VERSION = "1.1.1" end