Skip to content

Commit

Permalink
Release 2.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
nitriques committed Apr 13, 2018
1 parent b7e0b74 commit bd33e3b
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 17 deletions.
10 changes: 5 additions & 5 deletions README.markdown
Expand Up @@ -4,10 +4,10 @@

[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/symphonycms/symphony-2/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/symphonycms/symphony-2/?branch=master)

- Version: 2.7.4
- Date: 9th March 2018
- [Release notes](https://www.getsymphony.com/download/releases/version/2.7.4/)
- [Github repository](https://github.com/symphonycms/symphony-2/tree/2.7.4)
- Version: 2.7.5
- Date: 13th April 2018
- [Release notes](https://www.getsymphony.com/download/releases/version/2.7.5/)
- [Github repository](https://github.com/symphonycms/symphony-2/tree/2.7.5)
- [MIT Licence](https://github.com/symphonycms/symphony-2/blob/master/LICENCE)

## Contents
Expand All @@ -26,7 +26,7 @@

## Overview

Symphony is a `PHP` & `MySQL` based CMS that utilises `XML` and `XSLT` as its core technologies. This repository represents version `2.7.4` and is considered stable.
Symphony is a `PHP` & `MySQL` based CMS that utilises `XML` and `XSLT` as its core technologies. This repository represents version `2.7.5` and is considered stable.

Useful places:

Expand Down
2 changes: 1 addition & 1 deletion composer.json
@@ -1,6 +1,6 @@
{
"name": "symphonycms/symphony-2",
"version": "2.7.4",
"version": "2.7.5",
"description": "Symphony is a PHP & MySQL based CMS that utilises XML and XSLT as its core technologies.",
"homepage": "https://www.getsymphony.com",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion install/index.php
Expand Up @@ -27,7 +27,7 @@
define('DOCROOT', $clean_path);

// Required boot components
define('VERSION', '2.7.4');
define('VERSION', '2.7.5');
define('INSTALL', DOCROOT . '/install');

// Include autoloader:
Expand Down
14 changes: 14 additions & 0 deletions install/migrations/2.7.5.php
@@ -0,0 +1,14 @@
<?php

class migration_275 extends Migration
{
public static function getVersion()
{
return '2.7.5';
}

public static function getReleaseNotes()
{
return 'https://www.getsymphony.com/download/releases/version/2.7.5/';
}
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "symphonycms",
"version": "2.7.4",
"version": "2.7.5",
"homepage": "https://www.getsymphony.com",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions symphony/assets/css/devkit.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions symphony/assets/css/installer.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions symphony/assets/css/symphony.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions symphony/assets/js/symphony.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions vendor/composer/autoload_classmap.php
Expand Up @@ -169,4 +169,5 @@
'migration_272' => $baseDir . '/install/migrations/2.7.2.php',
'migration_273' => $baseDir . '/install/migrations/2.7.3.php',
'migration_274' => $baseDir . '/install/migrations/2.7.4.php',
'migration_275' => $baseDir . '/install/migrations/2.7.5.php',
);
1 change: 1 addition & 0 deletions vendor/composer/autoload_static.php
Expand Up @@ -176,6 +176,7 @@ class ComposerStaticInit5f867b58cbaae676dc2f623c94dcd5ad
'migration_272' => __DIR__ . '/../..' . '/install/migrations/2.7.2.php',
'migration_273' => __DIR__ . '/../..' . '/install/migrations/2.7.3.php',
'migration_274' => __DIR__ . '/../..' . '/install/migrations/2.7.4.php',
'migration_275' => __DIR__ . '/../..' . '/install/migrations/2.7.5.php',
);

public static function getInitializer(ClassLoader $loader)
Expand Down

0 comments on commit bd33e3b

Please sign in to comment.