Skip to content

Commit

Permalink
Version 23
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbkr committed Nov 29, 2021
1 parent 970a9cc commit e3ac6bc
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 20 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
This software is Copyright (c) 2020 by Patrick Böker.
This software is Copyright (c) 2021 by Patrick Böker.

This is free software, licensed under:

Expand Down
45 changes: 28 additions & 17 deletions META.json
Expand Up @@ -66,71 +66,82 @@
"provides" : {
"App::Rakubrew" : {
"file" : "lib/App/Rakubrew.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Build" : {
"file" : "lib/App/Rakubrew/Build.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Config" : {
"file" : "lib/App/Rakubrew/Config.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Download" : {
"file" : "lib/App/Rakubrew/Download.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Shell" : {
"file" : "lib/App/Rakubrew/Shell.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Shell::Bash" : {
"file" : "lib/App/Rakubrew/Shell/Bash.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Shell::Cmd" : {
"file" : "lib/App/Rakubrew/Shell/Cmd.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Shell::Fish" : {
"file" : "lib/App/Rakubrew/Shell/Fish.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Shell::PowerShell" : {
"file" : "lib/App/Rakubrew/Shell/PowerShell.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Shell::Sh" : {
"file" : "lib/App/Rakubrew/Shell/Sh.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Shell::Tcsh" : {
"file" : "lib/App/Rakubrew/Shell/Tcsh.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Shell::Zsh" : {
"file" : "lib/App/Rakubrew/Shell/Zsh.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Tools" : {
"file" : "lib/App/Rakubrew/Tools.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Update" : {
"file" : "lib/App/Rakubrew/Update.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::Variables" : {
"file" : "lib/App/Rakubrew/Variables.pm",
"version" : "22"
"version" : "23"
},
"App::Rakubrew::VersionHandling" : {
"file" : "lib/App/Rakubrew/VersionHandling.pm",
"version" : "22"
"version" : "23"
}
},
"release_status" : "stable",
"version" : "22",
"resources" : {
"bugtracker" : {
"web" : "https://github.com/Raku/App-Rakubrew/issues"
},
"homepage" : "https://rakubrew.org/",
"repository" : {
"type" : "git",
"url" : "https://github.com/Raku/App-Rakubrew.git",
"web" : "https://github.com/Raku/App-Rakubrew"
}
},
"version" : "23",
"x_generated_by_perl" : "v5.30.0",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.19",
"x_spdx_expression" : "MIT"
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
"Test::Compile" => "2.3.1",
"Test::More" => 0
},
"VERSION" => 22,
"VERSION" => 23,
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Rakubrew.pm
Expand Up @@ -2,7 +2,7 @@ package App::Rakubrew;
use strict;
use warnings;
use 5.010;
our $VERSION = '22';
our $VERSION = '23';

use Encode::Locale qw(env);
if (-t) {
Expand Down

0 comments on commit e3ac6bc

Please sign in to comment.