Skip to content

Commit

Permalink
Merge pull request #142 from catalyst/bump-version
Browse files Browse the repository at this point in the history
Bump version for release - 2020092800
  • Loading branch information
jwalits authored Sep 28, 2020
2 parents b1e2239 + 102b519 commit 7bc2004
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 19 deletions.
25 changes: 8 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: php
sudo: required

addons:
postgresql: "9.5"
postgresql: "9.6"

cache:
directories:
Expand All @@ -27,17 +27,11 @@ env:

matrix:
include:
# Some additional tests including MOODLE 27..30 and php 5.5.
# This plugin is not database intensive, just a few tests in mysqli should be enough.
- php: 5.5
dist: trusty
env: DB=mysqli MOODLE_BRANCH=MOODLE_27_STABLE
- php: 5.6
env: DB=mysqli MOODLE_BRANCH=MOODLE_28_STABLE
- php: 5.6
env: DB=mysqli MOODLE_BRANCH=MOODLE_29_STABLE
- php: 5.6
env: DB=mysqli MOODLE_BRANCH=MOODLE_31_STABLE
- php: 7.2
env: DB=mysqli MOODLE_BRANCH=MOODLE_39_STABLE
- php: 7.2
env: DB=mysqli MOODLE_BRANCH=MOODLE_310_STABLE
- php: 7.2
env: DB=pgsql MOODLE_BRANCH=master
# Moodle 3.4+ requires PHP 7.
Expand All @@ -47,9 +41,9 @@ matrix:


before_install:
- phpenv config-rm xdebug.ini
- cd ../..
- composer selfupdate
- composer create-project -n --no-dev moodlerooms/moodle-plugin-ci ci ^1
- composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^3;
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"

install:
Expand All @@ -61,9 +55,6 @@ script:
- moodle-plugin-ci phpcpd
- moodle-plugin-ci phpmd
- moodle-plugin-ci codechecker
- moodle-plugin-ci csslint
- moodle-plugin-ci shifter
- moodle-plugin-ci jshint
- moodle-plugin-ci validate
- moodle-plugin-ci phpunit
- moodle-plugin-ci phpunit -vvv
- moodle-plugin-ci behat
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
die('Direct access to this script is forbidden.'); // It must be included from a Moodle page.
}

$plugin->version = 2020081000; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = 2020081000; // Same as version
$plugin->version = 2020092800; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = 2020092800; // Same as version
$plugin->requires = 2014051200; // Requires Moodle 2.7 or later.
$plugin->component = "local_envbar";
$plugin->maturity = MATURITY_STABLE;

0 comments on commit 7bc2004

Please sign in to comment.