Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we want to default to a non-latest major version?

Aiming for compatibility is fine but if you start something new, starting with the minimum amount of future maintenance work seems ideal.

I don't think this would be a breaking change so we can also address that later.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A PR to update the Gemfile #379

- 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
Expand Down
2 changes: 1 addition & 1 deletion lib/pliny/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Pliny
VERSION = "1.2.0"
VERSION = "2.0.0"
end
Loading