Skip to content

Commit

Permalink
Merge tag 'release-1.00' into develop
Browse files Browse the repository at this point in the history
release 1.00
  • Loading branch information
gugod committed Oct 4, 2024
2 parents 981bb47 + 1b0b7e7 commit bf86c23
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
NEXT
1.00
- Released at 2024-10-04T10:48:40+0900
- Experimental: `perlbrew install` now accept names like skaji-relocatable-perl-$version.

0.99
Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
},
"App::perlbrew" : {
"file" : "lib/App/perlbrew.pm",
"version" : "0.99"
"version" : "1.00"
}
},
"release_status" : "stable",
Expand All @@ -86,7 +86,7 @@
"web" : "https://github.com/gugod/App-perlbrew"
}
},
"version" : "0.99",
"version" : "1.00",
"x_serialization_backend" : "JSON::PP version 4.16",
"x_spdx_expression" : "MIT",
"x_static_install" : "1"
Expand Down
4 changes: 2 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ provides:
file: lib/App/Perlbrew/Util.pm
App::perlbrew:
file: lib/App/perlbrew.pm
version: '0.99'
version: '1.00'
requires:
CPAN::Perl::Releases: '5.20240920'
Capture::Tiny: '0.48'
Expand All @@ -48,7 +48,7 @@ requires:
resources:
bugtracker: https://github.com/gugod/App-perlbrew/issues
repository: https://github.com/gugod/App-perlbrew.git
version: '0.99'
version: '1.00'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
x_spdx_expression: MIT
x_static_install: '1'
2 changes: 1 addition & 1 deletion dev-bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd $(dirname $0)/..
git clean -xdf

CURRENT_VERSION=$(egrep 'our \$VERSION = "[\.0-9]+";' lib/App/perlbrew.pm | egrep -o '[0-9]+' | tail -1)
RELEASE_VERSION=0.$((CURRENT_VERSION+1))
RELEASE_VERSION=1.$((CURRENT_VERSION+1))
RELEASE_TIMESTAMP=$(date +'%FT%T%z')
RELEASE_THANKS=$(git shortlog -s "$(git tag --list release-'*' | tail -1)"..HEAD | grep -v "$(git config user.name)" | perl -nE 'push@a,(split /[\t\n]/)[1]}{say join(", ",@a)')

Expand Down
2 changes: 1 addition & 1 deletion lib/App/perlbrew.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package App::perlbrew;
use strict;
use warnings;
use 5.008;
our $VERSION = "0.99";
our $VERSION = "1.00";
use Config qw( %Config );

BEGIN {
Expand Down
2 changes: 1 addition & 1 deletion perlbrew
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ $fatpacked{"App/perlbrew.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'AP
use strict;
use warnings;
use 5.008;
our $VERSION = "0.99";
our $VERSION = "1.00";
use Config qw( %Config );
BEGIN {
Expand Down

0 comments on commit bf86c23

Please sign in to comment.