From be811904725f9ea6e20b0d61ef7da106a8ebfa7c Mon Sep 17 00:00:00 2001 From: Ben Fritsch Date: Mon, 29 Sep 2025 16:51:22 +0200 Subject: [PATCH] Release 2.0.0 --- CHANGELOG.md | 10 ++++++++-- lib/pliny/version.rb | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6d313b8..6d11b26d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,16 @@ 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/). -## [Unreleased] +## [2.0.0] - 2025-09-29 -### Removed +### Changed +- Update minimum required version of sinatra from 2 to 3 (https://github.com/interagent/pliny/pull/370) +- Update templates for new projects to reflect new version requirements (https://github.com/interagent/pliny/pull/370 +- ensure Ruby 3.5 compatibility (https://github.com/interagent/pliny/pull/370) +- added RuboCop as a linter for pliny itself (https://github.com/interagent/pliny/pull/370) +- fixed all linting errors from RuboCop (lots of PR's) +### Removed - Remove deprecated `PLINY_ENV` environment variable support in favor of `APP_ENV` to align with Sinatra conventions (https://github.com/interagent/pliny/pull/373) ## [1.3.0] - 2025-09-29 diff --git a/lib/pliny/version.rb b/lib/pliny/version.rb index 6388bc83..8a50ab3e 100644 --- a/lib/pliny/version.rb +++ b/lib/pliny/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Pliny - VERSION = "1.2.0" + VERSION = "2.0.0" end