The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
0.03 2023-03-03
  [Document Improvement]
    * Document is improved.
    * Added -pthread linker option to document .
  [Changes]
    * Added -pthread compiler option.
    * Use new_cpp11 instead of new_gnu11.
  [Test Improvement]
    * Added -pthread linker option to test.
0.02 2023-03-01
  [Document Fix]
    * Fixed "Required Libraries" in the doc.
    
      # Windows
      if ($^O eq 'MSWin32') {
        $config->add_static_libs('stdc++', 'winpthread', 'gcc');
      }
      # Linux/Unix, Mac, etc
      else {
        $config->add_libs('stdc++');
      }
  [Test Fix]
    * Fixed the config file of the tests.
    
      # Windows
      if ($^O eq 'MSWin32') {
        $config->add_static_libs('stdc++', 'winpthread', 'gcc');
      }
      # Linux/Unix, Mac, etc
      else {
        $config->add_libs('stdc++');
      }
      
0.01 2023-02-28
  
  * First release