Skip to content

Commit 8da92fb

Browse files
committed
Bump version 0.9.0
1 parent a4b3f55 commit 8da92fb

File tree

6 files changed

+28
-6
lines changed

6 files changed

+28
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,26 @@
22

33
All notable changes of the `phpstan.el` are documented in this file using the [Keep a Changelog](https://keepachangelog.com/) principles.
44

5-
## Unreleased
5+
<!-- ## Unreleased -->
6+
7+
## [0.9.0]
68

79
### Added
810

9-
* Add `phpstan-copy-dumped-type` command to copy the nearest dumped type from `PHPStan\dumpType()` or `PHPStan\dumpPhpDocType()` messages.
11+
* Add `phpstan-copy-dumped-type` command to copy the nearest dumped type from `PHPStan\dumpType()` or `PHPStan\dumpPhpDocType()` messages
12+
* Add support for PHPStan [Editor Mode](https://phpstan.org/user-guide/editor-mode)
13+
14+
### Changed
15+
16+
* Improved error handling when no JSON response is returned
17+
18+
### Fixed
19+
20+
* Fixed erroneous dependency from `flymake-phpstan` to Flycheck functions
21+
22+
### Removed
23+
24+
* Drop support for Emacs 25.3
1025

1126
## [0.8.2]
1227

Eask

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
;; -*- mode: eask; lexical-binding: t -*-
22

33
(package "phpstan"
4-
"0.8.2"
4+
"0.9.0"
55
"Interface to PHPStan (PHP static analyzer)")
66

77
(website-url "https://github.com/emacs-php/phpstan.el")

README.org

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,13 @@ Use phpstan memory limit option when non-NIL.
162162
- ex) ~"1G"~
163163
- ~nil~ :: Use memory limit in php.ini
164164

165+
*** Custom variable ~phpstan-activate-editor-mode~
166+
Determines whether PHPStan Editor Mode is available.
167+
168+
- ~nil~ (default) :: Dynamically checks the PHPStan version by getting the path of the installed PHPStan executable.
169+
- ~'enabled~ :: Always use Editor Mode (this will cause an error in older versions of PHPStan)
170+
- ~'disabled~ :: Never use Editor Mode (no support for editors provided)
171+
165172
*** Custom variable ~phpstan-docker-image~
166173
Docker image URL or Docker Hub image name or NIL. Default as ~"ghcr.io/phpstan/phpstan"~. See [[https://phpstan.org/user-guide/docker][Docker - PHPStan Documentation]]
167174
and [[https://github.com/orgs/phpstan/packages/container/package/phpstan][GitHub Container Registory - Package phpstan]].

flycheck-phpstan.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 15 Mar 2018
7-
;; Version: 0.8.2
7+
;; Version: 0.9.0
88
;; Keywords: tools, php
99
;; Homepage: https://github.com/emacs-php/phpstan.el
1010
;; Package-Requires: ((emacs "25.1") (flycheck "26") (phpstan "0.8.2"))

flymake-phpstan.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 31 Mar 2020
7-
;; Version: 0.8.2
7+
;; Version: 0.9.0
88
;; Keywords: tools, php
99
;; Homepage: https://github.com/emacs-php/phpstan.el
1010
;; Package-Requires: ((emacs "26.1") (phpstan "0.8.2"))

phpstan.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 15 Mar 2018
7-
;; Version: 0.8.2
7+
;; Version: 0.9.0
88
;; Keywords: tools, php
99
;; Homepage: https://github.com/emacs-php/phpstan.el
1010
;; Package-Requires: ((emacs "25.1") (compat "30") (php-mode "1.22.3") (php-runtime "0.2"))

0 commit comments

Comments
 (0)