Skip to content

Commit 2759f89

Browse files
committed
Bump version 1.21.2
1 parent da84231 commit 2759f89

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

Cask

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(package "php-mode" "1.21.1" "Major mode for editing PHP code")
1+
(package "php-mode" "1.21.2" "Major mode for editing PHP code")
22
(source melpa)
33

44
(package-file "php-mode.el")

Changelog.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,24 @@
22

33
All notable changes of the PHP Mode 1.19.1 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
44

5-
## [1.21.2]
5+
## [1.21.2] - 2019-05-11
6+
7+
It officially supports **PHP 7.3** and **Emacs 26.2**.
8+
Many improvements have been received from [@sergeyklay], thank you!
9+
10+
### Added
11+
12+
* Highlighting added `fn` keyword supported by [PHP 7.2 arrow function] ([#506])
613

714
### Fixed
815

9-
* Function `php-beginning-of-defun` should return non-nil on success
10-
([#503](https://github.com/emacs-php/php-mode/issues/503))
16+
* Function `php-beginning-of-defun` should return non-nil on success ([#503])
17+
* Fixed an error that occurred in some heredoc/nowdoc ([#496])
18+
19+
### Changed
20+
21+
* Support PHP 7.3 heredoc/nowdoc ([#496])
22+
* Minor optimization of font-lock regular expression ([#510])
1123

1224
## [1.21.1] - 2019-04-01
1325

@@ -102,5 +114,11 @@ Start preparing for major refactoring in major mode.
102114

103115
See [Changelog · emacs-php/php-mode Wiki](https://github.com/emacs-php/php-mode/wiki/Changelog).
104116

117+
[#496]: https://github.com/emacs-php/php-mode/pull/496
118+
[#503]: https://github.com/emacs-php/php-mode/issues/503
119+
[#506]: https://github.com/emacs-php/php-mode/issues/506
120+
[#510]: https://github.com/emacs-php/php-mode/pull/510
105121
[@ejmr]: https://github.com/ejmr
106122
[@fabacino]: https://github.com/fabacino
123+
[@sergeyklay]: https://github.com/sergeyklay
124+
[PHP 7.2 arrow function]: https://wiki.php.net/rfc/arrow_functions_v2

php-mode.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
;; Maintainer: USAMI Kenta <[email protected]>
1010
;; URL: https://github.com/emacs-php/php-mode
1111
;; Keywords: languages php
12-
;; Version: 1.21.1
12+
;; Version: 1.21.2
1313
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5"))
1414
;; License: GPL-3.0-or-later
1515

16-
(defconst php-mode-version-number "1.21.1"
16+
(defconst php-mode-version-number "1.21.2"
1717
"PHP Mode version number.")
1818

19-
(defconst php-mode-modified "2019-04-01"
19+
(defconst php-mode-modified "2019-05-11"
2020
"PHP Mode build date.")
2121

2222
;; This program is free software; you can redistribute it and/or modify

php-project.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: USAMI Kenta <[email protected]>
66
;; Keywords: tools, files
77
;; URL: https://github.com/emacs-php/php-mode
8-
;; Version: 1.21.1
8+
;; Version: 1.21.2
99
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5"))
1010
;; License: GPL-3.0-or-later
1111

0 commit comments

Comments
 (0)