diff --git a/Unix/NEWS b/Unix/NEWS index 8e5e347a..2640fcea 100644 --- a/Unix/NEWS +++ b/Unix/NEWS @@ -1,4 +1,37 @@ + Release Notes for cloc version 1.92 + https://github.com/AlDanial/cloc + Dec. 5, 2021 + +New Languages and File Types: + o GraphQL + o Metal Shading Language + o PlantUML + o Properties + o Umka +Updates: + o The .bzl and .bazel extensions are now associated with Starlark. + o Added support for Puppet functions and type aliases. + o Removed reliance on XML definition with --force-lang-def + o Fixed broken --csv-delimiter handling. + o Fixed broken interaction of --vcs=git with --max-file-size; + support floating point value for --max-file-size. + o Improved support for uniform handling of uppercase and + lowercase filenames and extensions on Windows. + o Recognize CMakeLists.txt on Windows. + o Fixed handling of --unicode for small files. + o Updated Dockerfile to produce a smaller image. + o Improved contents of --ignored file (now includes skipped + binary files and does not include directory names). + o Identify SCSS separately from Sass. + o Updated Sass filters to handle C++ style comments. + o Improved support for Assembly. + o Recognize :: comments in DOS batch files. + o Properly handle explicitly-excluded files (for example, + .gitignore) with --diff. + + +============================================================================ Release Notes for cloc version 1.90 https://github.com/AlDanial/cloc May 1, 2021 diff --git a/Unix/cloc b/Unix/cloc index 4c25ae83..01ed00da 100755 --- a/Unix/cloc +++ b/Unix/cloc @@ -29,9 +29,9 @@ # . # # 1}}} -my $VERSION = "1.91"; # odd number == beta; even number == stable +my $VERSION = "1.92"; # odd number == beta; even number == stable my $URL = "github.com/AlDanial/cloc"; # 'https://' pushes header too wide -require 5.006; +require 5.10.0; # use modules {{{1 use warnings; use strict; diff --git a/Unix/cloc.1.pod b/Unix/cloc.1.pod index 646a11b9..6fabd45b 100644 --- a/Unix/cloc.1.pod +++ b/Unix/cloc.1.pod @@ -1,6 +1,6 @@ # Copyright # -# Copyright (C) 2018-2020 Al Danial . +# Copyright (C) 2018-2021 Al Danial . # Copyright (C) 2010-2017 Jari Aalto # # License @@ -840,7 +840,7 @@ sloccount(1) =head1 AUTHORS The cloc program was written by Al Danial and -is Copyright (C) 2006-2019 . +is Copyright (C) 2006-2021 . The manual page was originally written by Jari Aalto . diff --git a/cloc b/cloc index 46640a9f..d55d2ef8 100755 --- a/cloc +++ b/cloc @@ -29,9 +29,9 @@ # . # # 1}}} -my $VERSION = "1.91"; # odd number == beta; even number == stable +my $VERSION = "1.92"; # odd number == beta; even number == stable my $URL = "github.com/AlDanial/cloc"; # 'https://' pushes header too wide -require 5.006; +require 5.10.0; # use modules {{{1 use warnings; use strict;