Skip to content

Commit 433864b

Browse files
authored
Merge pull request #604 from emacs-php/release/1.22.2
Bump up version 1.22.2
2 parents 2f984bd + 861a640 commit 433864b

File tree

7 files changed

+44
-7
lines changed

7 files changed

+44
-7
lines changed

CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,43 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
88

99
* Drop support for Emacs 24 and 25.1
1010

11+
## [1.22.2] - 2019-12-23
12+
13+
A face has been added for coloring PHP syntax. Thank you [@minikN]!
14+
15+
This release is a minor modified version of the 1.22.x series.
16+
PHP Mode 2.0 is planned to be released in January 2020.
17+
18+
### Added
19+
20+
* Add `php-project-etags-file` and `php-project-apply-local-variables` ([#591])
21+
* Add `php-find-system-php-ini-file` and `php-ini` command ([#593])
22+
23+
### Changed
24+
25+
* Improve PHP syntax highlighting (by [@minikN])
26+
* Add support for multiple operators ([#594])
27+
* Add `=>` to assignment operators ([#602], [#603])
28+
* Plain faces no longer inherit `default` ([#597])
29+
30+
### Removed
31+
32+
* Remove `php-mode-modified` variable ([#590])
33+
34+
### Fixed
35+
36+
* Fix anonymous class indentation ([#598])
37+
38+
[@minikN]: https://github.com/minikN
39+
[#590]: https://github.com/emacs-php/php-mode/pull/590
40+
[#591]: https://github.com/emacs-php/php-mode/pull/591
41+
[#593]: https://github.com/emacs-php/php-mode/pull/593
42+
[#594]: https://github.com/emacs-php/php-mode/pull/594
43+
[#597]: https://github.com/emacs-php/php-mode/pull/597
44+
[#598]: https://github.com/emacs-php/php-mode/pull/598
45+
[#602]: https://github.com/emacs-php/php-mode/pull/602
46+
[#603]: https://github.com/emacs-php/php-mode/pull/603
47+
1148
## [1.22.1] - 2019-11-10
1249

1350
This release is a minor modified version of the 1.22.x series.

Cask

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

44
(package-file "php.el")

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.22.1
7+
;; Version: 1.22.2
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.22.1
8+
;; Version: 1.22.2
99
;; Package-Requires: ((emacs "24.3"))
1010
;; License: GPL-3.0-or-later
1111

php-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
;; Maintainer: USAMI Kenta <[email protected]>
1010
;; URL: https://github.com/emacs-php/php-mode
1111
;; Keywords: languages php
12-
;; Version: 1.22.1
12+
;; Version: 1.22.2
1313
;; Package-Requires: ((emacs "24.3"))
1414
;; License: GPL-3.0-or-later
1515

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

1919
;; 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.22.1
8+
;; Version: 1.22.2
99
;; Package-Requires: ((emacs "24.3"))
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.22.1
7+
;; Version: 1.22.2
88
;; Keywords: languages, php
99
;; Homepage: https://github.com/emacs-php/php-mode
1010
;; Package-Requires: ((emacs "24.3"))

0 commit comments

Comments
 (0)