diff --git a/CHANGELOG.md b/CHANGELOG.md index 442df6c..3e71568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.1.0] — 2026-05-18 ### Added diff --git a/CLAUDE.md b/CLAUDE.md index ca2db3b..bb4f78c 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,8 +1,8 @@ # easy-proxy — CLAUDE.md > Nginx reverse proxy CLI con Let's Encrypt SSL automation e multi-DNS provider. -> Stato: **ATTIVO** — v2.0.0 in sviluppo -> Ultimo aggiornamento: 2026-04-02 +> Stato: **ATTIVO** — v2.1.0 +> Ultimo aggiornamento: 2026-05-18 --- diff --git a/README.md b/README.md index 0a75601..c6c5a04 100644 --- a/README.md +++ b/README.md @@ -51,9 +51,9 @@ easy proxy create # start the proxy on :80 and :443 easy proxy status # prints the container id when running ``` -> **Note — v2.0.0 is in active development.** `easy proxy build` builds the -> `ethiclab/nginx-easy` image locally from a single self-contained `Dockerfile` -> (`FROM certbot/certbot:latest`) — no custom base image and no registry needed. +> **Note.** `easy proxy build` builds the `ethiclab/nginx-easy` image locally +> from a single self-contained `Dockerfile` (`FROM certbot/certbot:latest`) — no +> custom base image and no registry needed. ## Quick start — HTTP diff --git a/package.json b/package.json index 060d7a5..dd27763 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ethiclab/easy-cli", - "version": "2.0.0", + "version": "2.1.0", "description": "Nginx reverse proxy with Let's Encrypt SSL automation, multi-DNS provider support (IONOS, Route53, Cloudflare, DigitalOcean)", "files": [ "easy", diff --git a/test/dispatcher.bats b/test/dispatcher.bats index 607c38d..2fe613f 100644 --- a/test/dispatcher.bats +++ b/test/dispatcher.bats @@ -8,14 +8,14 @@ setup() { easy_setup; } @test "easy --version prints the package.json version" { run easy --version [ "$status" -eq 0 ] - [ "$output" = "2.0.0" ] + [ "$output" = "2.1.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.0.0" ] + [ "$output" = "2.1.0" ] } @test "easy with no command prints usage and fails" {