Skip to content

Commit

Permalink
Release 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nitriques committed Feb 1, 2018
1 parent e710b02 commit c88488b
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 46 deletions.
2 changes: 1 addition & 1 deletion LICENCE
@@ -1,5 +1,5 @@
Copyright 2008-2015 Alistair Kearney, Allen Chang, Scott Hughes
Copyright 2016-2017 Symphony CMS Community (https://github.com/symphonycms/symphony-2/graphs/contributors)
Copyright 2016-2018 Symphony CMS Community (https://github.com/symphonycms/symphony-2/graphs/contributors)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
18 changes: 9 additions & 9 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.0
- Date: 11th July 2017
- [Release notes](http://getsymphony.com/download/releases/version/2.7.0/)
- [Github repository](https://github.com/symphonycms/symphony-2/tree/2.7.0)
- Version: 2.7.1
- Date: 1st February 2018
- [Release notes](https://www.getsymphony.com/download/releases/version/2.7.1/)
- [Github repository](https://github.com/symphonycms/symphony-2/tree/2.7.1)
- [MIT Licence](https://github.com/symphonycms/symphony-2/blob/master/LICENCE)

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

## Overview

Symphony is a `PHP` & `MySQL` based CMS that utilises `XML` and `XSLT` as its core technologies. This repository represents version `2.7.0` 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.1` and is considered stable.

Useful places:

- [The Symphony website](http://getsymphony.com/)
- [The Symphony forum](http://getsymphony.com/discuss/)
- [The Symphony website](https://www.getsymphony.com/)
- [The Symphony forum](https://www.getsymphony.com/discuss/)
- [Symphony Extensions](http://symphonyextensions.com/)
- [Contributing to Symphony](https://github.com/symphonycms/symphony-2/wiki/Contributing-to-Symphony)

Expand Down Expand Up @@ -88,7 +88,7 @@ Before installation, see the [notes on file permissions](#file-permissions).

### Via the old-fashioned way

1. This step assumes you downloaded a zip archive from the [Symphony website](http://getsymphony.com). Upload the following files and directories to the root directory of your website:
1. This step assumes you downloaded a zip archive from the [Symphony website](https://www.getsymphony.com). Upload the following files and directories to the root directory of your website:

- `index.php`
- `/extensions`
Expand Down Expand Up @@ -137,7 +137,7 @@ Symphony `2.3` officially only supports updating from a `2.2.x` release. There a

#### Versions prior to 2.2

Symphony `2.2` introduces numerous improvements that may affect extension compatibility. Before updating, be sure to consult the [extension compatibility table](http://getsymphony.com/download/extensions/compatibility/) to verify that the extensions you’re using have all been updated for Symphony `2.2`.
Symphony `2.2` introduces numerous improvements that may affect extension compatibility. Before updating, be sure to consult the [extension compatibility table](https://www.getsymphony.com/download/extensions/compatibility/) to verify that the extensions you’re using have all been updated for Symphony `2.2`.

#### Versions prior to 2.1

Expand Down
2 changes: 1 addition & 1 deletion composer.json
@@ -1,6 +1,6 @@
{
"name": "symphonycms/symphony-2",
"version": "2.7.0",
"version": "2.7.1",
"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.0');
define('VERSION', '2.7.1');
define('INSTALL', DOCROOT . '/install');

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

class migration_271 extends Migration
{
public static function getVersion()
{
return '2.7.1';
}

public static function getReleaseNotes()
{
return 'http://getsymphony.com/download/releases/version/2.7.1/';
}
}
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.0",
"version": "2.7.1",
"homepage": "https://www.getsymphony.com",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions symphony/assets/css/devkit.min.css

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

6 changes: 3 additions & 3 deletions symphony/assets/css/installer.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions symphony/assets/css/symphony.min.css

Large diffs are not rendered by default.

26 changes: 3 additions & 23 deletions symphony/assets/js/symphony.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions vendor/composer/autoload_static.php
Expand Up @@ -172,6 +172,7 @@ class ComposerStaticInit5f867b58cbaae676dc2f623c94dcd5ad
'migration_268' => __DIR__ . '/../..' . '/install/migrations/2.6.8.php',
'migration_269' => __DIR__ . '/../..' . '/install/migrations/2.6.9.php',
'migration_270' => __DIR__ . '/../..' . '/install/migrations/2.7.0.php',
'migration_271' => __DIR__ . '/../..' . '/install/migrations/2.7.1.php',
);

public static function getInitializer(ClassLoader $loader)
Expand Down

0 comments on commit c88488b

Please sign in to comment.