Skip to content

Commit 5e04c92

Browse files
authored
Merge pull request #750 from emacs-php/support/emacs29
Support Emacs 29.1
2 parents 73d2ded + 7774c8d commit 5e04c92

File tree

6 files changed

+602
-4
lines changed

6 files changed

+602
-4
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- "27.2"
2020
- "28.1"
2121
- "28.2"
22+
- release-snapshot
2223
- snapshot
2324
include:
2425
- emacs_version: snapshot

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
All notable changes of the PHP Mode 1.19.1 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5-
<!-- ## Unreleased -->
5+
## Unreleased
6+
7+
### Added
8+
9+
* **Support Emacs 29.1** ([#750])
10+
11+
[#750]: https://github.com/emacs-php/php-mode/pull/750
612

713
## [1.24.3] - 2023-03-19
814

README.ja.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<h1>Emacs PHP Mode</h1>
33

4-
[![Emacs: 28.2](https://img.shields.io/badge/Emacs-28.2-blue.svg)](https://www.gnu.org/software/emacs/)
4+
[![Emacs: 29.1](https://img.shields.io/badge/Emacs-29.1-blue.svg)](https://www.gnu.org/software/emacs/)
55
[![lang: PHP 8.2](https://img.shields.io/badge/lang-PHP%208.2-brightgreen.svg)](https://php.net/manual/migration82.php)
66
[![lang: PHP 7](https://img.shields.io/badge/lang-PHP%207-green.svg)](https://php.net/downloads.php)
77
[![Build Status](https://github.com/emacs-php/php-mode/workflows/CI/badge.svg)](https://github.com/emacs-php/php-mode/actions)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<h1>Emacs PHP Mode</h1>
33

4-
[![Emacs: 28.2](https://img.shields.io/badge/Emacs-28.2-blue.svg)](https://www.gnu.org/software/emacs/)
4+
[![Emacs: 29.1](https://img.shields.io/badge/Emacs-29.1-blue.svg)](https://www.gnu.org/software/emacs/)
55
[![lang: PHP 8.2](https://img.shields.io/badge/lang-PHP%208.2-brightgreen.svg)](https://php.net/manual/migration82.php)
66
[![lang: PHP 7](https://img.shields.io/badge/lang-PHP%207-green.svg)](https://php.net/downloads.php)
77
[![Build Status](https://github.com/emacs-php/php-mode/workflows/CI/badge.svg)](https://github.com/emacs-php/php-mode/actions)

tests/php-mode-test.el

+2-1
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,8 @@ style from Drupal."
596596

597597
(ert-deftest php-mode-test-type-hints ()
598598
"Test highlighting of type hints and return types."
599-
(with-php-mode-test ("type-hints.php" :faces t)))
599+
(with-php-mode-test ("type-hints.php" :faces (cond ((version<= "29" emacs-version) ".29.faces")
600+
(t)))))
600601

601602
(ert-deftest php-mode-test-static-method-calls ()
602603
"Test highlighting of static method calls which are named the same

0 commit comments

Comments
 (0)