Skip to content

Commit b2e64bb

Browse files
committed
Prepare for 4.5.8 release
1 parent 2a24716 commit b2e64bb

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

.travis.dist.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Travis CI support has been deprecated in 4.5.8 and will be removed in 5.0.0. Please use GitHub Actions instead.
12
language: php
23

34
dist: focal

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ Actions](https://docs.github.com/en/actions) or [Travis
1111
CI](https://travis-ci.com). All of these tests and tools
1212
are run everytime a change is pushed to a GitHub branch or pull request.
1313

14+
> [!WARNING]
15+
> Travis CI support has been deprecated in 4.5.8 and will be removed in 5.0.0.
16+
1417
* [Getting started](https://moodlehq.github.io/moodle-plugin-ci/)
1518
* [Help topics](https://moodlehq.github.io/moodle-plugin-ci/Help.html)
1619
* [Changelog](https://moodlehq.github.io/moodle-plugin-ci/CHANGELOG.html)

bin/moodle-plugin-ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if (file_exists(__DIR__ . '/../../../autoload.php')) {
4545
}
4646

4747
// Current version. Keep it updated on releases.
48-
define('MOODLE_PLUGIN_CI_VERSION', '4.5.7');
48+
define('MOODLE_PLUGIN_CI_VERSION', '4.5.8');
4949

5050
define('MOODLE_PLUGIN_CI_BOXED', '@is_boxed@');
5151

docs/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,17 @@ This project adheres to [Semantic Versioning](https://semver.org/).
99
The format of this change log follows the advice given at [Keep a CHANGELOG](https://keepachangelog.com).
1010

1111
## [Unreleased]
12+
## [4.5.8] - 2025-07-08
1213
### Changed
1314
- Bump default Selenium version to 4.
1415

1516
### Fixed
1617
- Add support for public directory structure in 5.1 (MDL-83424).
1718

19+
### Deprecated
20+
- Using Travis CI has been deprecated in 4.5.8 and will be removed in 5.0.0. This includes removing configuration template and relevant documentation.
21+
- ACTION SUGGESTED: Consider using GitHub Actions for plugin CI testing.
22+
1823
## [4.5.7] - 2025-03-26
1924
### Changed
2025
- Allow to run with PHP 8.4 (supported in Moodle 5.0)
@@ -766,7 +771,8 @@ The format of this change log follows the advice given at [Keep a CHANGELOG](htt
766771
- `moodle-plugin-ci shifter` command. Run YUI Shifter on plugin YUI modules.
767772
- `moodle-plugin-ci csslint` command. Lints the CSS files in the plugin.
768773

769-
[Unreleased]: https://github.com/moodlehq/moodle-plugin-ci/compare/4.5.7...main
774+
[Unreleased]: https://github.com/moodlehq/moodle-plugin-ci/compare/4.5.8...main
775+
[4.5.8]: https://github.com/moodlehq/moodle-plugin-ci/compare/4.5.7...4.5.8
770776
[4.5.7]: https://github.com/moodlehq/moodle-plugin-ci/compare/4.5.6...4.5.7
771777
[4.5.6]: https://github.com/moodlehq/moodle-plugin-ci/compare/4.5.5...4.5.6
772778
[4.5.5]: https://github.com/moodlehq/moodle-plugin-ci/compare/4.5.4...4.5.5

docs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ CI](https://travis-ci.com), if you are using
1414
`moodle-plugin-ci` with other CI services please do share your setup examples
1515
by creating a ticket.
1616

17+
> [!WARNING]
18+
> Travis CI support has been deprecated in 4.5.8 and will be removed in 5.0.0.
19+
1720
Why would you want to do this? It saves you from having to remember to setup and run PHPUnit, Behat, code checker, etc
1821
every single time you make a change. If you have enough test coverage, it also makes accepting pull requests painless
1922
because you can be more confident that the change wont break anything. There are many more advantages to use CI

0 commit comments

Comments
 (0)