Skip to content

Commit 7f4236d

Browse files
author
Jacob Peddicord
committed
0.4.2
1 parent 0550415 commit 7f4236d

File tree

6 files changed

+34
-17
lines changed

6 files changed

+34
-17
lines changed

CHANGELOG.md

+23-6
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,26 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88

99
Nothing yet!
1010

11+
## [0.4.2] - 2020-01-14
12+
13+
### Changed
14+
15+
- Performance improvements in text pre-processing ([#48], thanks [@AnthonyMikh])
16+
- Updated SPDX dataset
17+
18+
[0.4.2]: https://github.com/amzn/askalono/releases/tag/0.4.2
19+
[#48]: https://github.com/amzn/askalono/pull/48
20+
[@AnthonyMikh]: https://github.com/AnthonyMikh
21+
1122
## [0.4.1] - 2019-12-06
1223

1324
### Fixed
1425

1526
- Removed some extraneous files from the core `askalono` packaged crate.
1627
- Include LICENSE, NOTICE, and README.md in `askalono-cli` crate.
1728

29+
[0.4.1]: https://github.com/amzn/askalono/releases/tag/0.4.1
30+
1831
## [0.4.0] - 2019-11-06
1932

2033
### Added
@@ -33,8 +46,12 @@ Nothing yet!
3346

3447
### Fixed
3548

36-
- The `lcs_removal` preprocessor has been fixed to be less aggressive on certain repeated statements (#42).
37-
- Fixed CLI help text strings (#34)
49+
- The `lcs_removal` preprocessor has been fixed to be less aggressive on certain repeated statements ([#42]).
50+
- Fixed CLI help text strings ([#34])
51+
52+
[0.4.0]: https://github.com/amzn/askalono/releases/tag/0.4.0
53+
[#42]: https://github.com/amzn/askalono/issues/42
54+
[#34]: https://github.com/amzn/askalono/issues/34
3855

3956
## [0.3.0] - 2018-09-27
4057

@@ -61,6 +78,8 @@ Nothing yet!
6178

6279
- `optimize_bounds` now respects existing line views/windows on TextData structs.
6380

81+
[0.3.0]: https://github.com/amzn/askalono/releases/tag/0.3.0
82+
6483
## [0.2.0] - 2018-05-13
6584

6685
### Added
@@ -86,15 +105,13 @@ Nothing yet!
86105

87106
- Resolved a potential panic for short/empty license files (a divide-by-zero was involved).
88107

108+
[0.2.0]: https://github.com/amzn/askalono/releases/tag/0.2.0
109+
89110
## [0.1.0] - 2018-01-31
90111

91112
- Initial release
92113
- Non-existent documentation
93114
- Bad tests
94115
- It's fast, though
95116

96-
97-
[0.4.0]: https://github.com/amzn/askalono/releases/tag/0.4.0
98-
[0.3.0]: https://github.com/amzn/askalono/releases/tag/0.3.0
99-
[0.2.0]: https://github.com/amzn/askalono/releases/tag/0.2.0
100117
[0.1.0]: https://github.com/amzn/askalono/releases/tag/0.1.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askalono"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2018"
55
description = "a library to detect the contents of license files"
66
license = "Apache-2.0"

cli/Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askalono-cli"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
edition = "2018"
55
description = "a tool to detect the contents of license files"
66
license = "Apache-2.0"
@@ -18,7 +18,7 @@ include = [
1818
]
1919

2020
[dependencies]
21-
askalono = { version = "0.4.1", path = "../" }
21+
askalono = { version = "0.4.2", path = "../" }
2222
clap = "2.32.0"
2323
env_logger = "0.7"
2424
failure = "0.1.5"
@@ -33,7 +33,7 @@ structopt = "0.2.15"
3333
difference = { version = "2.0.0", optional = true }
3434

3535
[build-dependencies]
36-
askalono = { version = "0.4.0", path = "../" }
36+
askalono = { version = "0.4.2", path = "../" }
3737

3838
[[bin]]
3939
name = "askalono"

extras/lambda/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extras/wasm/pkg/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)