Skip to content

Commit

Permalink
prepare for v1.92 release
Browse files Browse the repository at this point in the history
  • Loading branch information
AlDanial committed Dec 5, 2021
1 parent 3cd69a3 commit 043e8ea
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 6 deletions.
33 changes: 33 additions & 0 deletions Unix/NEWS
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Unix/cloc
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
# <http://www.gnu.org/licenses/gpl.txt>.
#
# 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;
Expand Down
4 changes: 2 additions & 2 deletions Unix/cloc.1.pod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright
#
# Copyright (C) 2018-2020 Al Danial <al.danial@gmail.com>.
# Copyright (C) 2018-2021 Al Danial <al.danial@gmail.com>.
# Copyright (C) 2010-2017 Jari Aalto <jari.aalto@cante.net>
#
# License
Expand Down Expand Up @@ -840,7 +840,7 @@ sloccount(1)
=head1 AUTHORS

The cloc program was written by Al Danial <al.danial@gmail.com> and
is Copyright (C) 2006-2019 <al.danial@gmail.com>.
is Copyright (C) 2006-2021 <al.danial@gmail.com>.

The manual page was originally written by Jari Aalto <jari.aalto@cante.net>.

Expand Down
4 changes: 2 additions & 2 deletions cloc
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
# <http://www.gnu.org/licenses/gpl.txt>.
#
# 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;
Expand Down

0 comments on commit 043e8ea

Please sign in to comment.