-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #487 from emacs-php/release/1.20.0
Release 1.20.0
- Loading branch information
Showing
6 changed files
with
46 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
;;; php-mode.el --- Major mode for editing PHP code | ||
|
||
;; Copyright (C) 2018 Friends of Emacs-PHP development | ||
;; Copyright (C) 1999, 2000, 2001, 2003, 2004 Turadg Aleahmad | ||
;; 2008 Aaron S. Hawley | ||
;; 2011, 2012, 2013, 2014, 2015, 2016, 2017 Eric James Michael Ritz | ||
|
@@ -8,14 +9,14 @@ | |
;; Maintainer: USAMI Kenta <[email protected]> | ||
;; URL: https://github.com/emacs-php/php-mode | ||
;; Keywords: languages php | ||
;; Version: 1.19.1 | ||
;; Version: 1.20.0 | ||
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5")) | ||
;; License: GPL-3.0-or-later | ||
|
||
(defconst php-mode-version-number "1.19.1" | ||
(defconst php-mode-version-number "1.20.0" | ||
"PHP Mode version number.") | ||
|
||
(defconst php-mode-modified "2018-08-28" | ||
(defconst php-mode-modified "2018-12-05" | ||
"PHP Mode build date.") | ||
|
||
;; This file is free software; you can redistribute it and/or | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
;; Author: USAMI Kenta <[email protected]> | ||
;; Keywords: tools, files | ||
;; URL: https://github.com/emacs-php/php-mode | ||
;; Version: 1.19.1 | ||
;; Version: 1.20.0 | ||
;; Package-Requires: ((emacs "24.3") (cl-lib "0.5")) | ||
;; License: GPL-3.0-or-later | ||
|
||
|