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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project are documented here. The format is based on
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project aims
to follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.1.1] - 2026-09-07

### Fixed

Expand Down Expand Up @@ -326,6 +326,8 @@ Initial release.
- `--fuel` is a substring match, so `Gasolio` also matches variants such as
`Gasolio Alpino`.

[1.1.1]: https://github.com/galjos/pitstop-cli/releases/tag/v1.1.1
[1.1.0]: https://github.com/galjos/pitstop-cli/releases/tag/v1.1.0
[1.0.2]: https://github.com/galjos/pitstop-cli/releases/tag/v1.0.2
[1.0.1]: https://github.com/galjos/pitstop-cli/releases/tag/v1.0.1
[1.0.0]: https://github.com/galjos/pitstop-cli/releases/tag/v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ pytest -q

## Status & roadmap

v1.1.0 — stable public release: fuel-price core (registry+price join, filters, proximity, cheapest, `--min-price` floor, `--fresh-within-days` freshness, combined 15% + Tukey IQR outlier rule, ISTAT comune-coordinate validation, JSON) + **EV charging stations via OSM Overpass** (operator, plug types, max kW, fee, access — `pitstop chargers`) + **operator tariff-page URLs** attached to each EV result. Includes **multi-fuel query support**, **international municipality mapping** (EN/FR/DE), **macro price statistics** (`pitstop stats`), and **navigation/GeoJSON support**. MCP server, agent skill, tests, CI.
v1.1.1 — stable public release: fuel-price core (registry+price join, filters, proximity, cheapest, `--min-price` floor, `--fresh-within-days` freshness, combined 15% + Tukey IQR outlier rule, ISTAT comune-coordinate validation, JSON) + **EV charging stations via OSM Overpass** (operator, plug types, max kW, fee, access — `pitstop chargers`) + **operator tariff-page URLs** attached to each EV result. Includes **multi-fuel query support**, **international municipality mapping** (EN/FR/DE), **macro price statistics** (`pitstop stats`), and **navigation/GeoJSON support**. MCP server, agent skill, tests, CI.

Planned, roughly in order:
- per-station **EV tariff data** if a source `pitstop` can read starts publishing per-kWh prices (today it parses only OSM's `fee` yes/no flag, no price field);
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "pitstop-cli"
version = "1.1.0"
version = "1.1.1"
description = "JSON-first CLI + MCP server for Italian fuel-station prices and EV charging — MIMIT, OpenStreetMap, ISTAT."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
4 changes: 2 additions & 2 deletions skills/pitstop/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ metadata:
{
"id": "uvx",
"kind": "uvx",
"package": "pitstop-cli>=1.1.0",
"package": "pitstop-cli>=1.1.1",
"bins": ["pitstop"],
"label": "Run pitstop on demand (uvx)",
},
{
"id": "pipx",
"kind": "pipx",
"package": "pitstop-cli>=1.1.0",
"package": "pitstop-cli>=1.1.1",
"bins": ["pitstop"],
"label": "Install pitstop (pipx)",
},
Expand Down
2 changes: 1 addition & 1 deletion src/pitstop/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.0"
__version__ = "1.1.1"
Loading