Skip to content

Commit

Permalink
prepare version 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
richterger committed Jul 26, 2023
1 parent 1ef4926 commit d73e2c8
Show file tree
Hide file tree
Showing 5 changed files with 25 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.1 C<2023-07-26>

=over

=item * Fix: Formatting with perltidy was broken in 2.6.0

=back

=head2 2.6.0 C<2023-07-23>

=over
Expand Down
6 changes: 6 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.1 `2023-07-26`

- Fix: Formatting with perltidy was broken in 2.6.0

## 2.6.0 `2023-07-23`

- Add debug setting for running as different user. See sudoUser setting. (#174) [wielandp]
Expand All @@ -11,6 +15,7 @@
- Add setting useTaintForSyntaxCheck. If true, use taint mode for syntax check (#172) [wielandp]
- Add setting useTaintForDebug. If true, use taint mode inside debugger (#181) [wielandp]
- Add debug adapter request `source`, which allows to display source of eval or file that are not available to vscode (#180) [wielandp]

- Fix: Spelling (#170, #171) [pkg-perl-tools]
- Fix: Convert charset encoding of debugger output according to current locale (#167) [wielandp]
- Fix: Fix diagnostic notifications override on clients (based on #185) [bmeneg]
Expand All @@ -22,6 +27,7 @@
- Add configuration `disablePassEnv` to not pass environment variables.
- Support for `logLevel` and `logFile` settings via LanguageServer protocol and
not only via command line options (#97) [schellj]

- Fix: "No DB::DB routine defined" (#91) [peterdragon]
- Fix: Typos and spelling in README (#159) [dseynhae]
- Fix: Update call to gensym(), to fix 'strict subs' error (#164) [KohaAloha]
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.0",
"version": "2.6.1",
"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.0" ;
let client_version : string = "2.6.1" ;
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.0';
our $VERSION = '2.6.1';


=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.1 C<2023-07-26>
=over
=item * Fix: Formatting with perltidy was broken in 2.6.0
=back
=head2 2.6.0 C<2023-07-23>
=over
Expand Down

0 comments on commit d73e2c8

Please sign in to comment.