From 861a64089b0b833b82a1003e31aa853aa71357d7 Mon Sep 17 00:00:00 2001 From: USAMI Kenta Date: Tue, 24 Dec 2019 01:30:10 +0900 Subject: [PATCH] Bump up version 1.22.2 --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ Cask | 2 +- php-face.el | 2 +- php-mode-debug.el | 2 +- php-mode.el | 4 ++-- php-project.el | 2 +- php.el | 2 +- 7 files changed, 44 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3da51b55..18d590a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,43 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this * Drop support for Emacs 24 and 25.1 +## [1.22.2] - 2019-12-23 + +A face has been added for coloring PHP syntax. Thank you [@minikN]! + +This release is a minor modified version of the 1.22.x series. +PHP Mode 2.0 is planned to be released in January 2020. + +### Added + + * Add `php-project-etags-file` and `php-project-apply-local-variables` ([#591]) + * Add `php-find-system-php-ini-file` and `php-ini` command ([#593]) + +### Changed + + * Improve PHP syntax highlighting (by [@minikN]) + * Add support for multiple operators ([#594]) + * Add `=>` to assignment operators ([#602], [#603]) + * Plain faces no longer inherit `default` ([#597]) + +### Removed + + * Remove `php-mode-modified` variable ([#590]) + +### Fixed + + * Fix anonymous class indentation ([#598]) + +[@minikN]: https://github.com/minikN +[#590]: https://github.com/emacs-php/php-mode/pull/590 +[#591]: https://github.com/emacs-php/php-mode/pull/591 +[#593]: https://github.com/emacs-php/php-mode/pull/593 +[#594]: https://github.com/emacs-php/php-mode/pull/594 +[#597]: https://github.com/emacs-php/php-mode/pull/597 +[#598]: https://github.com/emacs-php/php-mode/pull/598 +[#602]: https://github.com/emacs-php/php-mode/pull/602 +[#603]: https://github.com/emacs-php/php-mode/pull/603 + ## [1.22.1] - 2019-11-10 This release is a minor modified version of the 1.22.x series. diff --git a/Cask b/Cask index 3bf4cc29..98e06c3c 100644 --- a/Cask +++ b/Cask @@ -1,4 +1,4 @@ -(package "php-mode" "1.22.1" "Major mode for editing PHP code") +(package "php-mode" "1.22.2" "Major mode for editing PHP code") (source melpa) (package-file "php.el") diff --git a/php-face.el b/php-face.el index 5f402573..b5b401da 100644 --- a/php-face.el +++ b/php-face.el @@ -4,7 +4,7 @@ ;; Author: USAMI Kenta ;; Created: 5 May 2019 -;; Version: 1.22.1 +;; Version: 1.22.2 ;; Keywords: faces, php ;; Homepage: https://github.com/emacs-php/php-mode ;; Package-Requires: ((emacs "24.3")) diff --git a/php-mode-debug.el b/php-mode-debug.el index daa539f4..61be30a0 100644 --- a/php-mode-debug.el +++ b/php-mode-debug.el @@ -5,7 +5,7 @@ ;; Author: USAMI Kenta ;; URL: https://github.com/emacs-php/php-mode ;; Keywords: maint -;; Version: 1.22.1 +;; Version: 1.22.2 ;; Package-Requires: ((emacs "24.3")) ;; License: GPL-3.0-or-later diff --git a/php-mode.el b/php-mode.el index 4c22632a..f8c93295 100644 --- a/php-mode.el +++ b/php-mode.el @@ -9,11 +9,11 @@ ;; Maintainer: USAMI Kenta ;; URL: https://github.com/emacs-php/php-mode ;; Keywords: languages php -;; Version: 1.22.1 +;; Version: 1.22.2 ;; Package-Requires: ((emacs "24.3")) ;; License: GPL-3.0-or-later -(defconst php-mode-version-number "1.22.1" +(defconst php-mode-version-number "1.22.2" "PHP Mode version number.") ;; This program is free software; you can redistribute it and/or modify diff --git a/php-project.el b/php-project.el index 18115cc0..6029238e 100644 --- a/php-project.el +++ b/php-project.el @@ -5,7 +5,7 @@ ;; Author: USAMI Kenta ;; Keywords: tools, files ;; URL: https://github.com/emacs-php/php-mode -;; Version: 1.22.1 +;; Version: 1.22.2 ;; Package-Requires: ((emacs "24.3")) ;; License: GPL-3.0-or-later diff --git a/php.el b/php.el index 3a171a1b..7967dc5c 100644 --- a/php.el +++ b/php.el @@ -4,7 +4,7 @@ ;; Author: USAMI Kenta ;; Created: 5 Dec 2018 -;; Version: 1.22.1 +;; Version: 1.22.2 ;; Keywords: languages, php ;; Homepage: https://github.com/emacs-php/php-mode ;; Package-Requires: ((emacs "24.3"))