From 065cd5b7b7b1ca079a4c1e99fb47f0c1be4265f7 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Tue, 19 Jan 2021 12:08:10 -0700 Subject: [PATCH] Prepare for release --- .github/workflows/tests.yaml | 6 +++--- CHANGELOG.md | 5 ++++- LICENSE.txt | 2 +- system/defines.php | 4 ++-- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index b55050eaa..22cc9e4a5 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -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 }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 42a3811af..ed59e7dd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/LICENSE.txt b/LICENSE.txt index cb8634f99..771734e14 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -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 diff --git a/system/defines.php b/system/defines.php index 5b82a550c..30d02db8f 100644 --- a/system/defines.php +++ b/system/defines.php @@ -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')) {