aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--SBO-Lib/Changes2
-rw-r--r--SBO-Lib/README2
-rw-r--r--SBO-Lib/lib/SBO/Lib.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Build.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Download.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Info.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Pkgs.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Readme.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Repo.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Tree.pm2
-rw-r--r--SBO-Lib/lib/SBO/Lib/Util.pm2
-rw-r--r--slackbuild/sbotools/sbotools.SlackBuild2
-rw-r--r--slackbuild/sbotools/sbotools.info2
14 files changed, 16 insertions, 12 deletions
diff --git a/README.md b/README.md
index 3eda4ef..17adb95 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.2 - Unreleased
+
* 2.1 - 2017-01-14
* Internals:
- Adding internal documentation
diff --git a/SBO-Lib/Changes b/SBO-Lib/Changes
index de7b3ee..cf4c59e 100644
--- a/SBO-Lib/Changes
+++ b/SBO-Lib/Changes
@@ -1,3 +1,5 @@
+2.2 - Unreleased
+
2.1 - 2017-01-14
* Internals:
- Adding internal documentation
diff --git a/SBO-Lib/README b/SBO-Lib/README
index 2fbc0af..98bbf5f 100644
--- a/SBO-Lib/README
+++ b/SBO-Lib/README
@@ -1,4 +1,4 @@
-SBO-Lib version 2.1
+SBO-Lib version 2.2
===================
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 25f39a3..ca59c96 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.1';
+our $VERSION = '2.2';
=pod
diff --git a/SBO-Lib/lib/SBO/Lib/Build.pm b/SBO-Lib/lib/SBO/Lib/Build.pm
index 9323f16..da2512a 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.1';
+our $VERSION = '2.2';
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 0f6d40a..10116a7 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.1';
+our $VERSION = '2.2';
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 91a96e0..9d90ac3 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.1';
+our $VERSION = '2.2';
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 6975a7f..8e4b453 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.1';
+our $VERSION = '2.2';
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 d365a8a..47dabe8 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.1';
+our $VERSION = '2.2';
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 46648d3..72b6031 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.1';
+our $VERSION = '2.2';
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 e8d17fb..4f4d0e4 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.1';
+our $VERSION = '2.2';
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 6c38382..b48e20c 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.1';
+our $VERSION = '2.2';
use Exporter 'import';
use Sort::Versions;
diff --git a/slackbuild/sbotools/sbotools.SlackBuild b/slackbuild/sbotools/sbotools.SlackBuild
index d151953..f6aecbc 100644
--- a/slackbuild/sbotools/sbotools.SlackBuild
+++ b/slackbuild/sbotools/sbotools.SlackBuild
@@ -5,7 +5,7 @@
# Licensed under the WTFPL <http://sam.zoy.org/wtfpl/COPYING>
PRGNAM=sbotools
-VERSION=${VERSION:-2.1}
+VERSION=${VERSION:-2.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
diff --git a/slackbuild/sbotools/sbotools.info b/slackbuild/sbotools/sbotools.info
index 1b22f7c..ded34b3 100644
--- a/slackbuild/sbotools/sbotools.info
+++ b/slackbuild/sbotools/sbotools.info
@@ -1,5 +1,5 @@
PRGNAM="sbotools"
-VERSION="2.1"
+VERSION="2.2"
HOMEPAGE="http://pink-mist.github.io/sbotools/"
DOWNLOAD="http://pink-mist.github.io/sbotools/downloads/@FILENAME@"
MD5SUM="@MD5@"