mirror of https://github.com/XAMPPRocky/tokei
Bump version
This commit is contained in:
parent
5a4767ee2a
commit
97312d2ad4
41
CHANGELOG.md
41
CHANGELOG.md
|
|
@ -1,3 +1,44 @@
|
|||
# 9.0.0
|
||||
|
||||
* Tokei now has config files. You can now specify some commonly used arguments
|
||||
in a `.tokeirc`/`tokei.toml`. Namely `columns` to set the default column
|
||||
output, `types` to filter your count to just a single set of languages, and
|
||||
`treat_doc_strings_as_comments` which is a new option that allows you to
|
||||
specify whether to treat doc strings such as `"""` in Python as comments
|
||||
or code.
|
||||
The config files can be specified in two places, the current directory tokei
|
||||
is running in and your [system configuration
|
||||
directory](docs.rs/tokei/struct.Config.html#method.from_config_files). The
|
||||
priority of options is as follows
|
||||
`CLI > <current_directory> > <configuration_directory>`.
|
||||
* Tokei is now available on [Conda](https://anaconda.org/conda-forge/tokei).
|
||||
* [Tokei's README has been translated
|
||||
to chinese.](https://github.com/chinanf-boy/tokei-zh#tokei-)
|
||||
* `LanguageType` now implements `Hash`.
|
||||
* Tokei now batches it's console output, this should result in a small
|
||||
performance boost.
|
||||
* There is now a `--columns` argument for manually setting tokei's output width.
|
||||
* The `--sort` argument is now case-insensitive.
|
||||
* Tokei will now mark languages who's files failed to parse correctly as
|
||||
potentially inaccurate.
|
||||
* Due to a bug in trust-ci `x86_64-unknown-netbsd` versions are will not be
|
||||
available in GitHub releases. (You will still be able to install from source.)
|
||||
* Due to toml-rs's lacking enum support the TOML output option has
|
||||
been disabled.
|
||||
|
||||
**Added languages**
|
||||
- @t-richards Liquid
|
||||
- @diaphore Added the `.glsl` extension to GLSL.
|
||||
- @ahmedelgabri Twig
|
||||
- @pmoura Logtalk
|
||||
- @alekratz Perl, Not Quite Perl
|
||||
- @Aaronepower Automake, .NET Resource, HLSL, INI, Unreal Plugin,
|
||||
Unreal Project, Unreal Shader, Unreal Shader Header, Unreal Markdown,
|
||||
Visual Basic, Visual Studio Solution, Visual Studio Project, XCode Config,
|
||||
- @TheMrNomis SWIG
|
||||
- @xnorme Added the `.vhdl` extension to VHDL
|
||||
|
||||
|
||||
# 8.0.0
|
||||
* A language's comments, and quotes are now available through the `LanguageType`
|
||||
enum.
|
||||
|
|
|
|||
|
|
@ -330,7 +330,7 @@ dependencies = [
|
|||
"quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"regex 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_json 1.0.34 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_json 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
|
|
@ -778,7 +778,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "serde_json"
|
||||
version = "1.0.34"
|
||||
version = "1.0.35"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
@ -902,7 +902,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "tokei"
|
||||
version = "8.0.1"
|
||||
version = "9.0.0"
|
||||
dependencies = [
|
||||
"clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"dirs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
@ -918,7 +918,7 @@ dependencies = [
|
|||
"serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_cbor 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_derive 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_json 1.0.34 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_json 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_yaml 0.8.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"term_size 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
@ -1146,7 +1146,7 @@ dependencies = [
|
|||
"checksum serde 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)" = "0e732ed5a5592c17d961555e3b552985baf98d50ce418b7b655f31f6ba7eb1b7"
|
||||
"checksum serde_cbor 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "45cd6d95391b16cd57e88b68be41d504183b7faae22030c0cc3b3f73dd57b2fd"
|
||||
"checksum serde_derive 1.0.84 (registry+https://github.com/rust-lang/crates.io-index)" = "b4d6115a3ca25c224e409185325afc16a0d5aaaabc15c42b09587d6f1ba39a5b"
|
||||
"checksum serde_json 1.0.34 (registry+https://github.com/rust-lang/crates.io-index)" = "bdf540260cfee6da923831f4776ddc495ada940c30117977c70f1313a6130545"
|
||||
"checksum serde_json 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)" = "dfb1277d4d0563e4593e0b8b5d23d744d277b55d2bc0bf1c38d0d8a6589d38aa"
|
||||
"checksum serde_yaml 0.8.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0887a8e097a69559b56aa2526bf7aff7c3048cf627dff781f0b56a6001534593"
|
||||
"checksum sha-1 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "51b9d1f3b5de8a167ab06834a7c883bd197f2191e1dda1a22d9ccfeedbf9aded"
|
||||
"checksum smallvec 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b73ea3738b47563803ef814925e69be00799a8c07420be8b996f8e98fb2336db"
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
|
|||
name = "tokei"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/Aaronepower/tokei.git"
|
||||
version = "8.0.1"
|
||||
version = "9.0.0"
|
||||
edition = "2018"
|
||||
|
||||
[badges]
|
||||
|
|
|
|||
Loading…
Reference in New Issue