Updates for 3.0.4 release

- Updated lib/Percona/Toolkit.pm version to 3.0.4
- Updated all scripts version to 3.0.4
- Updated the build script removing seds to add links to Jira/Launchpad
in favor of a solution in config/sphinx-build/conf.py
This commit is contained in:
Carlos Salguero
2017-07-31 16:07:19 -03:00
parent 405d90aec5
commit 481acbaaa0
20 changed files with 19 additions and 36 deletions

View File

@@ -45,7 +45,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -43,7 +43,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -42,7 +42,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -38,7 +38,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -39,7 +39,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -35,7 +35,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -37,7 +37,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -44,7 +44,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -45,7 +45,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -47,7 +47,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -56,7 +56,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -64,7 +64,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -40,7 +40,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -41,7 +41,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -57,7 +57,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -55,7 +55,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -61,7 +61,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -44,7 +44,7 @@ BEGIN {
{
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -18,7 +18,7 @@
# ###########################################################################
package Percona::Toolkit;
our $VERSION = '3.0.3';
our $VERSION = '3.0.4';
use strict;
use warnings FATAL => 'all';

View File

@@ -315,23 +315,6 @@ update_rel_notes() {
mv /tmp/release_notes.tmp release_notes.rst
# Convert issues numbers to links:
# Jira tickets
# * PT-73: Added support for SSL connections to ``pt-mongodb-summary`` and ``pt-mongodb-query-digest``
# to
# * `PT-73 <https://jira.percona.com/browse/PT-73>`_: Added support for SSL connections to ``pt-mongodb-summary`` and ``pt-mongodb-query-digest``
sed -i.bak -e 's|\^*\s*\(PT-\([[:digit:]]\+\)\):| `\1 <https://jira.percona.com/browse/\1>`_:|' release_notes.rst
# Lauchpad tickets
# * 1642751: Enabled gathering of information about locks and transactions by ``pt-stalk`` using Performance Schema if it is enabled
# to
# * `1642751 <https://bugs.launchpad.net/percona-toolkit/+bug/1642751>`_: Enabled gathering of information about locks and transactions
# by ``pt-stalk`` using Performance Schema if it is enabled
sed -i.bak -e 's|^*\s*\(\([[:digit:]]\+\)\)\s*:|* `\1 <https://bugs.launchpad.net/percona-toolkit/+bug/\1>`_:|' release_notes.rst
echo "OK"
}