Skip to content
Merged
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]
## [2.2.0] — 2026-05-18

### Added

Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# easy-proxy — CLAUDE.md

> Nginx reverse proxy CLI con Let's Encrypt SSL automation e multi-DNS provider.
> Stato: **ATTIVO** — v2.1.0
> Stato: **ATTIVO** — v2.2.0
> Ultimo aggiornamento: 2026-05-18

---
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethiclab/easy-cli",
"version": "2.1.0",
"version": "2.2.0",
"description": "Nginx reverse proxy with Let's Encrypt SSL automation, multi-DNS provider support (IONOS, Route53, Cloudflare, DigitalOcean)",
"files": [
"easy",
Expand Down
4 changes: 2 additions & 2 deletions test/dispatcher.bats
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ setup() { easy_setup; }
@test "easy --version prints the package.json version" {
run easy --version
[ "$status" -eq 0 ]
[ "$output" = "2.1.0" ]
[ "$output" = "2.2.0" ]
}

@test "easy --version works without the runtime env vars set" {
unset EASY_LETSENCRYPT_DIR EASY_DOMAINS_DIR
run easy --version
[ "$status" -eq 0 ]
[ "$output" = "2.1.0" ]
[ "$output" = "2.2.0" ]
}

@test "easy with no command prints usage and fails" {
Expand Down
Loading