Prepare for release

This commit is contained in:
Andy Miller 2021-01-19 12:08:10 -07:00
parent 1d34b5389e
commit 065cd5b7b7
No known key found for this signature in database
GPG Key ID: 2B07A47E470BCFDE
4 changed files with 10 additions and 7 deletions

View File

@ -2,9 +2,9 @@ name: PHP Tests
on:
push:
branches: [ 1.7 ]
branches: [ develop ]
pull_request:
branches: [ 1.7 ]
branches: [ develop ]
jobs:
@ -64,7 +64,7 @@ jobs:
status: failure
fields: repo,message,author,action
icon_emoji: ':octocat:'
author_name: 'Github Action Tests (1.7)'
author_name: 'Github Action Tests'
text: '💥 Automated Test Failure'
env:
GITHUB_TOKEN: ${{ github.token }}

View File

@ -1,7 +1,10 @@
# v1.7.0
## mm/dd/2020
## 01/19/2021
1. [](#new)
* Requires **PHP 7.3.6**
* Read about this release in the [Grav 1.7 Released](https://getgrav.org/blog/grav-1.7-released) blog post
* Read the full list of changes in the [Changelog on GitHub](https://github.com/getgrav/grav/blob/1.7.0/CHANGELOG.md)
* Please read [Grav 1.7 Upgrade Guide](https://learn.getgrav.org/17/advanced/grav-development/grav-17-upgrade-guide) before upgrading!
* Added support for overriding configuration by using environment variables
* Use PHP 7.4 serialization (the old `Serializable` methods are now final and cannot be overridden)

View File

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2018 Grav
Copyright (c) 2021 Grav
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View File

@ -8,9 +8,9 @@
// Some standard defines
define('GRAV', true);
define('GRAV_VERSION', '1.7.0-rc.20');
define('GRAV_VERSION', '1.7.0');
define('GRAV_SCHEMA', '1.7.0_2020-11-20_1');
define('GRAV_TESTING', true);
define('GRAV_TESTING', false);
// PHP minimum requirement
if (!defined('GRAV_PHP_MIN')) {