Skip to content

Commit f1938b9

Browse files
authored
Merge pull request #537 from emacs-php/release/v1.21.3
Release v1.21.3
2 parents fa002a9 + 460dacb commit f1938b9

File tree

7 files changed

+39
-8
lines changed

7 files changed

+39
-8
lines changed

Cask

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(package "php-mode" "1.21.2" "Major mode for editing PHP code")
1+
(package "php-mode" "1.21.3" "Major mode for editing PHP code")
22
(source melpa)
33

44
(package-file "php.el")

Changelog.md

+31
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
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.3] - 2019-05-25
6+
7+
This version includes both PHP syntax support enhancements and performance improvements. See https://github.com/emacs-php/php-mode/projects/1 for all issues for this release. Also, [@mallt] has helped me improve it with a number of issues. thank you very much.
8+
9+
### Added
10+
11+
* Added new Faces to display PHP syntax
12+
* `php-constant-assign`
13+
* `php-magical-constant`
14+
* `php-errorcontrol-op`
15+
* Some funtions have been split into features such as `php.el`, `php-face.el` and `php-mode-debug.el`.
16+
17+
### Fixed
18+
19+
* Improved performance when opening large files ([#491], [#531])
20+
21+
[#491]: https://github.com/emacs-php/php-mode/issues/491
22+
[#531]: https://github.com/emacs-php/php-mode/pull/531
23+
24+
### Changed
25+
26+
* Syntax highlighting has been adjusted
27+
28+
### Removed
29+
30+
* `php-ext` and Skeleton templates have been split into [php-skeleton] ([#534])
31+
32+
[php-skeleton]: https://github.com/emacs-php/php-skeleton
33+
[#534]: https://github.com/emacs-php/php-mode/pull/534
34+
535
## [1.21.2] - 2019-05-11
636

737
It officially supports **PHP 7.3** and **Emacs 26.2**.
@@ -120,5 +150,6 @@ See [Changelog · emacs-php/php-mode Wiki](https://github.com/emacs-php/php-mode
120150
[#510]: https://github.com/emacs-php/php-mode/pull/510
121151
[@ejmr]: https://github.com/ejmr
122152
[@fabacino]: https://github.com/fabacino
153+
[@mallt]: https://github.com/mallt
123154
[@sergeyklay]: https://github.com/sergeyklay
124155
[PHP 7.2 arrow function]: https://wiki.php.net/rfc/arrow_functions_v2

php-face.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 5 May 2019
7-
;; Version: 1.21.2
7+
;; Version: 1.21.3
88
;; Keywords: faces, php
99
;; Homepage: https://github.com/emacs-php/php-mode
1010
;; Package-Requires: ((emacs "24.3"))

php-mode-debug.el

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

php-mode.el

+3-3
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.2
12+
;; Version: 1.21.3
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.2"
16+
(defconst php-mode-version-number "1.21.3"
1717
"PHP Mode version number.")
1818

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

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

php-project.el

+1-1
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.2
8+
;; Version: 1.21.3
99
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5"))
1010
;; License: GPL-3.0-or-later
1111

php.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 5 Dec 2018
7-
;; Version: 1.21.2
7+
;; Version: 1.21.3
88
;; Keywords: languages, php
99
;; Homepage: https://github.com/emacs-php/php-mode
1010
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5"))

0 commit comments

Comments
 (0)