From fe28abb6473b5b8ce8d177d364cf5826dc3dee53 Mon Sep 17 00:00:00 2001 From: texpert Date: Mon, 15 May 2023 14:21:53 +0300 Subject: [PATCH] Preparing the new v0.2.1 release --- .github_changelog_generator | 2 +- CHANGELOG.md | 22 +++++++++++----------- lib/shrine/plugins/aws_lambda/version.rb | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github_changelog_generator b/.github_changelog_generator index 7e65940..18b7a7e 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,3 +1,3 @@ unreleased=true -future-release=0.2.0 +future-release=0.2.1 exclude-labels=duplicate,question,invalid,wontfix,release diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eb175a..eb32a1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,17 @@ # Changelog -## [0.2.0](https://github.com/texpert/shrine-aws-lambda/tree/0.2.0) (2022-08-28) +## [v0.2.1](https://github.com/texpert/shrine-aws-lambda/tree/v0.2.1) (2023-05-15) -[Full Changelog](https://github.com/texpert/shrine-aws-lambda/compare/v0.1.2...0.2.0) +[Full Changelog](https://github.com/texpert/shrine-aws-lambda/compare/v0.2.0...v0.2.1) + +**Merged pull requests:** + +- Fix generate\_location method call to be Shrine 3.x and Ruby 3.x compliant [\#5](https://github.com/texpert/shrine-aws-lambda/pull/5) ([texpert](https://github.com/texpert)) +- Bump asdf Ruby to 2.7.8, use bundler 2.3.26 [\#4](https://github.com/texpert/shrine-aws-lambda/pull/4) ([texpert](https://github.com/texpert)) + +## [v0.2.0](https://github.com/texpert/shrine-aws-lambda/tree/v0.2.0) (2022-08-27) + +[Full Changelog](https://github.com/texpert/shrine-aws-lambda/compare/v0.1.2...v0.2.0) **Merged pull requests:** @@ -16,15 +25,6 @@ - Initial, compatible with shrine-lambda, release [\#1](https://github.com/texpert/shrine-aws-lambda/pull/1) ([texpert](https://github.com/texpert)) -## Changes: - -- **Breaking:** Change gem name to shrine-aws-lambda -- **Breaking:** Change class name from Shrine::Plugins::Lambda to Shrine::Plugins::AwsLambda -- **Breaking:** Change plugin registration symbol from `:lambda` to `:aws_lambda` - -- Add `.tools-version` file and specified Ruby 2.7.6 version -- Add rubocop-rspec and rubocop-performane as development dependencies and fix the arised issues - \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* diff --git a/lib/shrine/plugins/aws_lambda/version.rb b/lib/shrine/plugins/aws_lambda/version.rb index 3045a97..7b68f4d 100644 --- a/lib/shrine/plugins/aws_lambda/version.rb +++ b/lib/shrine/plugins/aws_lambda/version.rb @@ -3,7 +3,7 @@ class Shrine module Plugins module AwsLambda - VERSION = '0.2.0' + VERSION = '0.2.1' end end end