From c84832271603154bc27afb8c6188cbafe6fb5efb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edi=20Modri=C4=87?= Date: Thu, 9 Mar 2017 09:14:03 +0100 Subject: [PATCH] Bump version to 3.0 --- Resources/doc/CHANGELOG-3.0.md | 2 +- Resources/doc/INSTALL.md | 4 ++-- Version.php | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Resources/doc/CHANGELOG-3.0.md b/Resources/doc/CHANGELOG-3.0.md index 5dec4faa..3faf09cf 100644 --- a/Resources/doc/CHANGELOG-3.0.md +++ b/Resources/doc/CHANGELOG-3.0.md @@ -1,7 +1,7 @@ Netgen Tags Bundle 3.0 changelog ================================ -3.0 (xx.xx.xxxx) +3.0 (09.03.2017) ---------------- Since 3.0 is a new major release, there were a number of breaking changes, so be sure to read [upgrade instructions](UPGRADE.md#upgrade-from-22-to-30). diff --git a/Resources/doc/INSTALL.md b/Resources/doc/INSTALL.md index c7e6f558..80b69b81 100644 --- a/Resources/doc/INSTALL.md +++ b/Resources/doc/INSTALL.md @@ -9,7 +9,7 @@ Requirements Optional requirements --------------------- -* eZ Publish Legacy Stack with legacy eZ Tags 2.1 installed and configured. +* eZ Publish Legacy Stack with legacy eZ Tags 2.1 installed and configured, to enable editing `eztags` attributes in legacy admin interface Installation steps ------------------ @@ -19,7 +19,7 @@ Installation steps Run the following from your website root folder to install Netgen Tags Bundle: ``` -$ composer require netgen/tagsbundle:^3.0@beta +$ composer require netgen/tagsbundle:^3.0 ``` ### Activate the bundle diff --git a/Version.php b/Version.php index 0ad82952..0bb72772 100644 --- a/Version.php +++ b/Version.php @@ -4,10 +4,10 @@ abstract class Version { - const VERSION = '3.0.0-RC1'; + const VERSION = '3.0.0'; const VERSION_ID = 30000; const MAJOR_VERSION = 3; const MINOR_VERSION = 0; const RELEASE_VERSION = 0; - const EXTRA_VERSION = 'RC1'; + const EXTRA_VERSION = ''; }