From 6ee271f1c53351ecb5151c2413aeed65aeda7392 Mon Sep 17 00:00:00 2001 From: Andreas Guldstrand Date: Sat, 21 Jan 2017 01:25:21 +0100 Subject: Update version --- README.md | 2 ++ SBO-Lib/Changes | 2 ++ SBO-Lib/README | 2 +- SBO-Lib/lib/SBO/Lib.pm | 2 +- SBO-Lib/lib/SBO/Lib/Build.pm | 2 +- SBO-Lib/lib/SBO/Lib/Download.pm | 2 +- SBO-Lib/lib/SBO/Lib/Info.pm | 2 +- SBO-Lib/lib/SBO/Lib/Pkgs.pm | 2 +- SBO-Lib/lib/SBO/Lib/Readme.pm | 2 +- SBO-Lib/lib/SBO/Lib/Repo.pm | 2 +- SBO-Lib/lib/SBO/Lib/Tree.pm | 2 +- SBO-Lib/lib/SBO/Lib/Util.pm | 2 +- slackbuild/sbotools/sbotools.SlackBuild | 2 +- slackbuild/sbotools/sbotools.info | 2 +- 14 files changed, 16 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index b018cd8..003caf9 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ **[sbotools](https://pink-mist.github.io/sbotools/)** provides a ports-like interface to [slackbuilds.org](http://www.slackbuilds.org/). ## Changes +* 2.3 - Unreleased + * 2.2 - 2017-01-17 * Bugfix for parsing .info files with trailing whitespace after a value #54 diff --git a/SBO-Lib/Changes b/SBO-Lib/Changes index 19149ad..faf6021 100644 --- a/SBO-Lib/Changes +++ b/SBO-Lib/Changes @@ -1,3 +1,5 @@ +2.3 - Unreleased + 2.2 - 2017-01-17 * Bugfix for parsing .info files with trailing whitespace after a value (https://github.com/pink-mist/sbotools/issues/54) diff --git a/SBO-Lib/README b/SBO-Lib/README index 98bbf5f..a1c6cb6 100644 --- a/SBO-Lib/README +++ b/SBO-Lib/README @@ -1,4 +1,4 @@ -SBO-Lib version 2.2 +SBO-Lib version 2.3 =================== SBO::Lib is a library for the sbotools scripts. diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index ca59c96..63a33d8 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -15,7 +15,7 @@ use strict; use warnings FATAL => 'all'; package SBO::Lib; -our $VERSION = '2.2'; +our $VERSION = '2.3'; =pod diff --git a/SBO-Lib/lib/SBO/Lib/Build.pm b/SBO-Lib/lib/SBO/Lib/Build.pm index da2512a..1c3bf6a 100644 --- a/SBO-Lib/lib/SBO/Lib/Build.pm +++ b/SBO-Lib/lib/SBO/Lib/Build.pm @@ -4,7 +4,7 @@ use 5.016; use strict; use warnings; -our $VERSION = '2.2'; +our $VERSION = '2.3'; use SBO::Lib::Util qw/ :const prompt script_error get_sbo_from_loc get_arch check_multilib uniq %config in /; use SBO::Lib::Tree qw/ get_sbo_location /; diff --git a/SBO-Lib/lib/SBO/Lib/Download.pm b/SBO-Lib/lib/SBO/Lib/Download.pm index 10116a7..6ccb93b 100644 --- a/SBO-Lib/lib/SBO/Lib/Download.pm +++ b/SBO-Lib/lib/SBO/Lib/Download.pm @@ -4,7 +4,7 @@ use 5.016; use strict; use warnings; -our $VERSION = '2.2'; +our $VERSION = '2.3'; use SBO::Lib::Util qw/ :const script_error get_sbo_from_loc open_read get_arch /; use SBO::Lib::Repo qw/ $distfiles /; diff --git a/SBO-Lib/lib/SBO/Lib/Info.pm b/SBO-Lib/lib/SBO/Lib/Info.pm index 1ff3216..ecc5918 100644 --- a/SBO-Lib/lib/SBO/Lib/Info.pm +++ b/SBO-Lib/lib/SBO/Lib/Info.pm @@ -4,7 +4,7 @@ use 5.016; use strict; use warnings; -our $VERSION = '2.2'; +our $VERSION = '2.3'; use SBO::Lib::Util qw/ get_arch get_sbo_from_loc open_read script_error slurp usage_error /; use SBO::Lib::Tree qw/ get_orig_location get_sbo_location is_local /; diff --git a/SBO-Lib/lib/SBO/Lib/Pkgs.pm b/SBO-Lib/lib/SBO/Lib/Pkgs.pm index 8e4b453..d80cc02 100644 --- a/SBO-Lib/lib/SBO/Lib/Pkgs.pm +++ b/SBO-Lib/lib/SBO/Lib/Pkgs.pm @@ -4,7 +4,7 @@ use 5.016; use strict; use warnings; -our $VERSION = '2.2'; +our $VERSION = '2.3'; use SBO::Lib::Util qw/ %config script_error open_read version_cmp /; use SBO::Lib::Tree qw/ get_sbo_location get_sbo_locations is_local /; diff --git a/SBO-Lib/lib/SBO/Lib/Readme.pm b/SBO-Lib/lib/SBO/Lib/Readme.pm index 47dabe8..a2c7215 100644 --- a/SBO-Lib/lib/SBO/Lib/Readme.pm +++ b/SBO-Lib/lib/SBO/Lib/Readme.pm @@ -4,7 +4,7 @@ use 5.016; use strict; use warnings; -our $VERSION = '2.2'; +our $VERSION = '2.3'; use SBO::Lib::Util qw/ prompt script_error slurp open_read _ERR_OPENFH usage_error /; use SBO::Lib::Tree qw/ is_local /; diff --git a/SBO-Lib/lib/SBO/Lib/Repo.pm b/SBO-Lib/lib/SBO/Lib/Repo.pm index 72b6031..07508f9 100644 --- a/SBO-Lib/lib/SBO/Lib/Repo.pm +++ b/SBO-Lib/lib/SBO/Lib/Repo.pm @@ -4,7 +4,7 @@ use 5.016; use strict; use warnings; -our $VERSION = '2.2'; +our $VERSION = '2.3'; use SBO::Lib::Util qw/ %config prompt usage_error get_slack_version script_error open_fh open_read in /; diff --git a/SBO-Lib/lib/SBO/Lib/Tree.pm b/SBO-Lib/lib/SBO/Lib/Tree.pm index 4f4d0e4..209ac51 100644 --- a/SBO-Lib/lib/SBO/Lib/Tree.pm +++ b/SBO-Lib/lib/SBO/Lib/Tree.pm @@ -4,7 +4,7 @@ use 5.016; use strict; use warnings; -our $VERSION = '2.2'; +our $VERSION = '2.3'; use SBO::Lib::Util qw/ script_error open_read idx %config /; use SBO::Lib::Repo qw/ $repo_path $slackbuilds_txt /; diff --git a/SBO-Lib/lib/SBO/Lib/Util.pm b/SBO-Lib/lib/SBO/Lib/Util.pm index b48e20c..245795c 100644 --- a/SBO-Lib/lib/SBO/Lib/Util.pm +++ b/SBO-Lib/lib/SBO/Lib/Util.pm @@ -4,7 +4,7 @@ use 5.016; use strict; use warnings; -our $VERSION = '2.2'; +our $VERSION = '2.3'; use Exporter 'import'; use Sort::Versions; diff --git a/slackbuild/sbotools/sbotools.SlackBuild b/slackbuild/sbotools/sbotools.SlackBuild index f6aecbc..af908b8 100644 --- a/slackbuild/sbotools/sbotools.SlackBuild +++ b/slackbuild/sbotools/sbotools.SlackBuild @@ -5,7 +5,7 @@ # Licensed under the WTFPL PRGNAM=sbotools -VERSION=${VERSION:-2.2} +VERSION=${VERSION:-2.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} diff --git a/slackbuild/sbotools/sbotools.info b/slackbuild/sbotools/sbotools.info index ded34b3..9e1999a 100644 --- a/slackbuild/sbotools/sbotools.info +++ b/slackbuild/sbotools/sbotools.info @@ -1,5 +1,5 @@ PRGNAM="sbotools" -VERSION="2.2" +VERSION="2.3" HOMEPAGE="http://pink-mist.github.io/sbotools/" DOWNLOAD="http://pink-mist.github.io/sbotools/downloads/@FILENAME@" MD5SUM="@MD5@" -- cgit v1.2.3