Skip to content

Commit

Permalink
Bump version 1.21.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zonuexe committed May 11, 2019
1 parent da84231 commit 2759f89
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cask
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(package "php-mode" "1.21.1" "Major mode for editing PHP code")
(package "php-mode" "1.21.2" "Major mode for editing PHP code")
(source melpa)

(package-file "php-mode.el")
Expand Down
24 changes: 21 additions & 3 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,24 @@

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.

## [1.21.2]
## [1.21.2] - 2019-05-11

It officially supports **PHP 7.3** and **Emacs 26.2**.
Many improvements have been received from [@sergeyklay], thank you!

### Added

* Highlighting added `fn` keyword supported by [PHP 7.2 arrow function] ([#506])

### Fixed

* Function `php-beginning-of-defun` should return non-nil on success
([#503](https://github.com/emacs-php/php-mode/issues/503))
* Function `php-beginning-of-defun` should return non-nil on success ([#503])
* Fixed an error that occurred in some heredoc/nowdoc ([#496])

### Changed

* Support PHP 7.3 heredoc/nowdoc ([#496])
* Minor optimization of font-lock regular expression ([#510])

## [1.21.1] - 2019-04-01

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

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

[#496]: https://github.com/emacs-php/php-mode/pull/496
[#503]: https://github.com/emacs-php/php-mode/issues/503
[#506]: https://github.com/emacs-php/php-mode/issues/506
[#510]: https://github.com/emacs-php/php-mode/pull/510
[@ejmr]: https://github.com/ejmr
[@fabacino]: https://github.com/fabacino
[@sergeyklay]: https://github.com/sergeyklay
[PHP 7.2 arrow function]: https://wiki.php.net/rfc/arrow_functions_v2
6 changes: 3 additions & 3 deletions php-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
;; Maintainer: USAMI Kenta <[email protected]>
;; URL: https://github.com/emacs-php/php-mode
;; Keywords: languages php
;; Version: 1.21.1
;; Version: 1.21.2
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5"))
;; License: GPL-3.0-or-later

(defconst php-mode-version-number "1.21.1"
(defconst php-mode-version-number "1.21.2"
"PHP Mode version number.")

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

;; This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion php-project.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: USAMI Kenta <[email protected]>
;; Keywords: tools, files
;; URL: https://github.com/emacs-php/php-mode
;; Version: 1.21.1
;; Version: 1.21.2
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5"))
;; License: GPL-3.0-or-later

Expand Down

0 comments on commit 2759f89

Please sign in to comment.