From 6d944651fe13914a64deb1573effc0ee37f470cd Mon Sep 17 00:00:00 2001 From: Svyatoslav Kryukov Date: Tue, 17 May 2022 20:30:28 +0300 Subject: [PATCH] Bump 0.2.1 --- CHANGELOG.md | 12 +++++++++++- lib/paco/version.rb | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bd2f78..4e00f19 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], and this project adheres to [Semantic Versioning]. +## [Unreleased] + +## [0.2.1] - 2022-05-17 + +### Added + +- Support Ruby 2.2+. ([@palkan]) + ## [0.2.0] - 2021-12-28 ### Added @@ -60,8 +68,10 @@ it { is_expected.to parse("Paco").fully } # checks if parser result is the same - Initial implementation. ([@skryukov]) [@skryukov]: https://github.com/skryukov +[@palkan]: https://github.com/palkan -[Unreleased]: https://github.com/skryukov/paco/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/skryukov/paco/compare/v0.2.1...HEAD +[0.2.1]: https://github.com/skryukov/paco/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/skryukov/paco/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/skryukov/paco/commits/v0.1.0 diff --git a/lib/paco/version.rb b/lib/paco/version.rb index 528d417..9caef9a 100644 --- a/lib/paco/version.rb +++ b/lib/paco/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Paco - VERSION = "0.2.0" + VERSION = "0.2.1" end