Skip to content

Commit

Permalink
Bump versions and prep for v1.0.0 (#64)
Browse files Browse the repository at this point in the history
* Bump versions and rebuild for v1

* Update changelog
  • Loading branch information
sgb-io authored Oct 22, 2023
1 parent 81d7c2f commit 5b0d713
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 88 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# v1.0.0

Breaking changes

- Added the `include_comments` option with a default value of `false`, which means that comments are no longer included in scoring by default
- Added the `exclude_under` option with a default value of `6`, which means that files that are under _n_ lines of code are excluded from output. This option also takes into account the `include_comments` option.
- Changed `output_limit` to (a) only affect the `table` format output and (b) work as expected.

Other changes

- Exposed `output_limit`, `score_cap`, `include_comments` and `exclude_under` as CLI options
- Fixed an `ENOBUFS` crash that could occur when analyzing very large projects

# v0.2.0

- Potentially breaking: changed linux target platforms: we now target `musl` linux on `x86_64`, `arm` and `aarch64`
Expand Down
114 changes: 29 additions & 85 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"crates/fta",
"crates/fta-wasm"
Expand Down
2 changes: 1 addition & 1 deletion crates/fta-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fta-wasm"
version = "0.2.0"
version = "1.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Fast TypeScript Analyzer"
Expand Down
2 changes: 1 addition & 1 deletion crates/fta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fta"
version = "0.2.0"
version = "1.0.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Fast TypeScript Analyzer"
Expand Down
2 changes: 1 addition & 1 deletion packages/fta/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fta-cli",
"version": "0.2.0",
"version": "1.0.0",
"description": "FTA (Fast TypeScript Analyzer) is a super-fast TypeScript static analysis tool written in Rust",
"repository": "https://github.com/sgb-io/fta.git",
"author": "sgb-io <[email protected]>",
Expand Down

0 comments on commit 5b0d713

Please sign in to comment.