Skip to content

Commit

Permalink
Release 2020.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hurricup committed Dec 16, 2020
1 parent 9455e7b commit 5fc6b24
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Revision history for Devel-Camelcadedb

2020.3
Taint mode support, by @djstauffer
Typo fixes, by @HenkPoley
Proper state restoration on exit (mod_perl2 consistency fix), by @jonas-lindmark
Introduced $API_VERSION variable to unbind debugger version from protocol version

2019.1
Added renderers support

Expand Down
8 changes: 6 additions & 2 deletions lib/Devel/Camelcadedb.pm
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package Devel::Camelcadedb;
# must be quoted to work correctly with JSON protocol
our $VERSION = "v2019.1"; # DO NOT REMOVE FUCKING v, IT KEEPS PROPER VERSIONING
our $VERSION = "v2020.3"; # DO NOT REMOVE FUCKING v, IT KEEPS PROPER VERSIONING

# to ensure protocol compatibility between the IDE and the debugger, we will use $API_VERSION variable, to be able
# to bump debugger version without necessity to update IDE part.
my $API_VERSION = "2019.1";

# http://perldoc.perl.org/DB.html
# http://perldoc.perl.org/perldebug.html
Expand Down Expand Up @@ -1292,7 +1296,7 @@ sub _set_up_after_connect

_send_data_to_debugger( +{
event => 'READY',
version => $VERSION,
version => $API_VERSION,
} );
_report "Waiting for set up data..." if $_dev_mode;
my $set_up_data = <$_debug_socket>;
Expand Down

0 comments on commit 5fc6b24

Please sign in to comment.