Skip to content

Commit

Permalink
prepare for 2.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
richterger committed Dec 23, 2023
1 parent 76bfda4 commit 6e43563
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
8 changes: 8 additions & 0 deletions Changes.pod
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
=head1 Change Log

=head2 2.6.2 C<2023-12-23>

=over

=item * avoid given/when/smartmatch because these features are deprecated in perl 5.38 (#199) [real-dam]

=back

=head2 2.6.1 C<2023-07-26>

=over
Expand Down
4 changes: 4 additions & 0 deletions clients/vscode/perl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 2.6.2 `2023-12-23`

- avoid given/when/smartmatch because these features are deprecated in perl 5.38 (#199) [real-dam]

## 2.6.1 `2023-07-26`

- Fix: Formatting with perltidy was broken in 2.6.0
Expand Down
2 changes: 1 addition & 1 deletion clients/vscode/perl/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "perl",
"displayName": "Perl",
"description": "Language Server and Debugger for Perl",
"version": "2.6.1",
"version": "2.6.2",
"publisher": "richterger",
"repository": "https://github.com/richterger/Perl-LanguageServer",
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion clients/vscode/perl/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export async function activate(context: vscode.ExtensionContext)
}
let logFile : string = config.get('logFile') || '' ;
let logLevel : number = config.get('logLevel') || 0 ;
let client_version : string = "2.6.1" ;
let client_version : string = "2.6.2" ;
let perlArgsOpt : string[] = [...perlIncOpt,
...perlArgs,
'-MPerl::LanguageServer', '-e', 'Perl::LanguageServer::run', '--',
Expand Down
10 changes: 9 additions & 1 deletion lib/Perl/LanguageServer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Version 2.5.0
=cut

our $VERSION = '2.6.1';
our $VERSION = '2.6.2';


=head1 SYNOPSIS
Expand Down Expand Up @@ -1097,6 +1097,14 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=head1 Change Log
=head2 2.6.2 C<2023-12-23>
=over
=item * avoid given/when/smartmatch because these features are deprecated in perl 5.38 (#199) [real-dam]
=back
=head2 2.6.1 C<2023-07-26>
=over
Expand Down

0 comments on commit 6e43563

Please sign in to comment.