From 5e72c6bc40dce52a4e99fc8070084ed279dd2480 Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Sat, 18 Jul 2026 02:27:08 +0900 Subject: [PATCH] Release 0.10.0 Bump every package to 0.10.0 and close the changelog's Unreleased section. `phpstan', `flycheck-phpstan', `flymake-phpstan', and `phpstan-hover' are released together, and the sub-packages rely on this phpstan release -- the flycheck generic-checker rewrite and the flymake JSON parser both use phpstan.el internals introduced here -- so their `Package-Requires' now ask for `(phpstan "0.10.0")'. `phpstan-hover.el' gains a `Version' header to match the other files; it had none. 0.10.0 rather than 0.9.1 because this raises the Emacs floor to 27.1 (dropping 26), obsoletes `phpstan-flycheck-auto-set-executable', and adds Apple container support and `phpstan-hover-mode'. The obsolete declaration already named 0.10.0 as the version. --- CHANGELOG.md | 2 +- Eask | 2 +- Eask.27 | 2 +- flycheck-phpstan.el | 4 ++-- flymake-phpstan.el | 4 ++-- phpstan-hover.el | 3 ++- phpstan.el | 2 +- 7 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5486936..41ffcec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes of the `phpstan.el` are documented in this file using the [Keep a Changelog](https://keepachangelog.com/) principles. -## Unreleased +## [0.10.0] ### Added diff --git a/Eask b/Eask index 00cc4b8..e50e303 100644 --- a/Eask +++ b/Eask @@ -1,7 +1,7 @@ ;; -*- mode: eask; lexical-binding: t -*- (package "phpstan" - "0.9.0" + "0.10.0" "Interface to PHPStan (PHP static analyzer)") (website-url "https://github.com/emacs-php/phpstan.el") diff --git a/Eask.27 b/Eask.27 index 6b31fff..bfdcc30 100644 --- a/Eask.27 +++ b/Eask.27 @@ -12,7 +12,7 @@ ;; rest in sync with `Eask', which is the source of truth. (package "phpstan" - "0.9.0" + "0.10.0" "Interface to PHPStan (PHP static analyzer)") (website-url "https://github.com/emacs-php/phpstan.el") diff --git a/flycheck-phpstan.el b/flycheck-phpstan.el index ee8094b..6f79653 100644 --- a/flycheck-phpstan.el +++ b/flycheck-phpstan.el @@ -4,10 +4,10 @@ ;; Author: USAMI Kenta ;; Created: 15 Mar 2018 -;; Version: 0.9.0 +;; Version: 0.10.0 ;; Keywords: tools, php ;; Homepage: https://github.com/emacs-php/phpstan.el -;; Package-Requires: ((emacs "27.1") (flycheck "26") (phpstan "0.9.0")) +;; Package-Requires: ((emacs "27.1") (flycheck "26") (phpstan "0.10.0")) ;; License: GPL-3.0-or-later ;; This program is free software; you can redistribute it and/or modify diff --git a/flymake-phpstan.el b/flymake-phpstan.el index ce5da89..0f7af49 100644 --- a/flymake-phpstan.el +++ b/flymake-phpstan.el @@ -4,10 +4,10 @@ ;; Author: USAMI Kenta ;; Created: 31 Mar 2020 -;; Version: 0.9.0 +;; Version: 0.10.0 ;; Keywords: tools, php ;; Homepage: https://github.com/emacs-php/phpstan.el -;; Package-Requires: ((emacs "27.1") (phpstan "0.9.0")) +;; Package-Requires: ((emacs "27.1") (phpstan "0.10.0")) ;; License: GPL-3.0-or-later ;; This program is free software; you can redistribute it and/or modify diff --git a/phpstan-hover.el b/phpstan-hover.el index 71dd6c0..f5015de 100644 --- a/phpstan-hover.el +++ b/phpstan-hover.el @@ -4,9 +4,10 @@ ;; Author: USAMI Kenta ;; Created: 16 Feb 2026 +;; Version: 0.10.0 ;; Keywords: tools, php ;; Homepage: https://github.com/emacs-php/phpstan.el -;; Package-Requires: ((emacs "27.1") (phpstan "0.9.0")) +;; Package-Requires: ((emacs "27.1") (phpstan "0.10.0")) ;; License: GPL-3.0-or-later ;;; Commentary: diff --git a/phpstan.el b/phpstan.el index 8d283a8..15b8736 100644 --- a/phpstan.el +++ b/phpstan.el @@ -4,7 +4,7 @@ ;; Author: USAMI Kenta ;; Created: 15 Mar 2018 -;; Version: 0.9.0 +;; Version: 0.10.0 ;; Keywords: tools, php ;; Homepage: https://github.com/emacs-php/phpstan.el ;; Package-Requires: ((emacs "27.1") (compat "30") (php-mode "1.22.3") (php-runtime "0.2"))