Skip to content

Commit a459051

Browse files
authored
Merge pull request #487 from emacs-php/release/1.20.0
Release 1.20.0
2 parents 70e1cc1 + 7ddc753 commit a459051

File tree

6 files changed

+46
-7
lines changed

6 files changed

+46
-7
lines changed

Cask

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

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

Changelog.md

+32
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
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.20.0] - 2018-12-07
6+
7+
Start preparing for major refactoring in major mode.
8+
9+
### Changed
10+
11+
* Improve code highlight
12+
* Fix highlighting of callable keyword ([#471](https://github.com/emacs-php/php-mode/pull/471) by [@fabacino])
13+
* Highlight the `?` character for nullable type hints and return types ([#482](https://github.com/emacs-php/php-mode/pull/482) by [@fabacino])
14+
* Modify "customize group" and variables
15+
* Add php-mode group and some variables belong to new group ([#486](https://github.com/emacs-php/php-mode/pull/486))
16+
* `php-default-face``php-mode-default-face`
17+
* `php-speedbar-config``'php-mode-speedbar-config`
18+
* `php-template-compatibility``php-mode-template-compatibility`
19+
* `php-lineup-cascaded-calls``php-mode-lineup-cascaded-calls`
20+
* `php-extra-constants``php-mode-extra-constants`
21+
* `php-do-not-use-semantic-imenu``php-mode-do-not-use-semantic-imenu`
22+
* Modify documents and copyright
23+
* Move the URL of Website to https://github.com/emacs-php/php-mode
24+
* Add copyright notation about [Friends of Emacs-PHP development](https://github.com/emacs-php)
25+
* Add a "Hall of Fame" to the contributors list ([#481](https://github.com/emacs-php/php-mode/pull/481) by [@ejmr] and thanks [@sergey48k](https://github.com/sergey48k) and [@sourcerer-io](https://github.com/sourcerer-io) project)
26+
* Some refactors
27+
* Fix style and suppress warning in compile [#485](https://github.com/emacs-php/php-mode/pull/485)
28+
29+
<!--
30+
* Divide `php-mode.el` into `php.el` and `php-helper.el` for refactor
31+
* With this change, we provide simple functions to other packages without loading `php-mode`.
32+
-->
33+
534
## [1.19.1] - 2018-05-12
635

736
### Added
@@ -30,3 +59,6 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
3059
## Before 1.19.0
3160

3261
See [Changelog · emacs-php/php-mode Wiki](https://github.com/emacs-php/php-mode/wiki/Changelog).
62+
63+
[@ejmr]: https://github.com/ejmr
64+
[@fabacino]: https://github.com/fabacino

README.ja.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ PHP 5.4以降を開発しやすくするための機能をアップデートす
2222

2323
1. USAMI Kenta (@zonuexe)
2424

25-
[PHPモードのGitHubプロジェクト](https://github.com/emacs-php/php-mode)にissueを作成してバグ報告や機能リクエストを送ってください。或いは[PHPのスイート](https://github.com/emacs-php/php-suite)[FeatHubページ](https://feathub.com/emacs-php/php-suite)に機能リクエストを送ってもいいです
25+
[PHP ModeのGitHubプロジェクト][php-mode]にissueを作成してバグ報告や機能リクエストを送ってください。あるいは[PHP suite][php-suite][FeatHubページ][feathub]に機能リクエストを送っても構いません
2626

2727
インストール
2828
------------
@@ -353,3 +353,6 @@ PHPモードの改善に協力したすべての貢献者のリストは[README.
353353
[melpa-stable-link]: http://stable.melpa.org/#/php-mode
354354
[melpa-badge]: http://melpa.org/packages/php-mode-badge.svg
355355
[melpa-stable-badge]: http://stable.melpa.org/packages/php-mode-badge.svg
356+
[php-mode]: https://github.com/emacs-php/php-mode
357+
[php-suite]: https://github.com/emacs-php/php-suite
358+
[feathub]: https://feathub.com/emacs-php/php-suite

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The current maintainer is:
2323

2424
1. USAMI Kenta (@zonuexe)
2525

26-
Please submit any bug reports or feature requests by creating issues on [the GitHub page for PHP Mode](https://github.com/emacs-php/php-mode). Alternatively you may also request features via [the FeatHub page](https://feathub.com/emacs-php/php-suite) for the entire [PHP suite for GNU Emacs](https://github.com/emacs-php/php-suite).
26+
Please submit any bug reports or feature requests by creating issues on [the GitHub page for PHP Mode][php-mode]. Alternatively you may also request features via [the FeatHub page][feathub] for the entire [PHP suite for GNU Emacs][php-suite].
2727

2828

2929
Installation
@@ -417,3 +417,6 @@ In chronological order:
417417
[melpa-stable-link]: http://stable.melpa.org/#/php-mode
418418
[melpa-badge]: http://melpa.org/packages/php-mode-badge.svg
419419
[melpa-stable-badge]: http://stable.melpa.org/packages/php-mode-badge.svg
420+
[php-mode]: https://github.com/emacs-php/php-mode
421+
[php-suite]: https://github.com/emacs-php/php-suite
422+
[feathub]: https://feathub.com/emacs-php/php-suite

php-mode.el

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
;;; php-mode.el --- Major mode for editing PHP code
22

3+
;; Copyright (C) 2018 Friends of Emacs-PHP development
34
;; Copyright (C) 1999, 2000, 2001, 2003, 2004 Turadg Aleahmad
45
;; 2008 Aaron S. Hawley
56
;; 2011, 2012, 2013, 2014, 2015, 2016, 2017 Eric James Michael Ritz
@@ -8,14 +9,14 @@
89
;; Maintainer: USAMI Kenta <[email protected]>
910
;; URL: https://github.com/emacs-php/php-mode
1011
;; Keywords: languages php
11-
;; Version: 1.19.1
12+
;; Version: 1.20.0
1213
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5"))
1314
;; License: GPL-3.0-or-later
1415

15-
(defconst php-mode-version-number "1.19.1"
16+
(defconst php-mode-version-number "1.20.0"
1617
"PHP Mode version number.")
1718

18-
(defconst php-mode-modified "2018-08-28"
19+
(defconst php-mode-modified "2018-12-05"
1920
"PHP Mode build date.")
2021

2122
;; This file is free software; you can redistribute it and/or

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

0 commit comments

Comments
 (0)