Merge pull request #587 from Yamato-Security/1.3.1-release-finalization
finalize 1.3.1
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# 変更点
|
||||
|
||||
## v1.3.1 [2022/xx/xx]
|
||||
## v1.3.1 [2022/06/13]
|
||||
|
||||
**新機能:**
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
**改善:**
|
||||
|
||||
- LinuxとmacOSのバイナリサイズをより小さくするために、デバッグシンボルをストリップします。(#568) (@YamatoSecurity)
|
||||
- Crateパッケージの更新 (@YamatoSecurity)
|
||||
- 新たな時刻表示のオプションとして`--US-time`、`--US-military-time`、`--European-time`の3つを追加した (#574) (@hitenkoku)
|
||||
- `--rfc-3339` オプションの時刻表示形式を変更した。 (#574) (@hitenkoku)
|
||||
- `-R/ --display-record-id`オプションを`-R/ --hide-record-id`に変更。レコードIDはデフォルトで出力するようにして`-R`オプションを付けた際に表示しないように変更した。(#579) (@hitenkoku)
|
||||
@@ -17,10 +18,6 @@
|
||||
|
||||
**バグ修正:**
|
||||
|
||||
- xxx
|
||||
|
||||
**バグ修正:**
|
||||
|
||||
- 対応するオプションを付与していないときにもRecordIDとRecordInformationの列が出力されていたのを修正した。 (#577) (@hitenkoku)
|
||||
|
||||
## v1.3.0 [2022/06/06]
|
||||
|
||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,6 +1,6 @@
|
||||
# Changes
|
||||
|
||||
## v1.3.1 [2022/xx/xx]
|
||||
## v1.3.1 [2022/06/13]
|
||||
|
||||
**New Features:**
|
||||
|
||||
@@ -9,19 +9,16 @@
|
||||
|
||||
**Enhancements:**
|
||||
|
||||
- Strip debug symbols by default for smaller Linux and macOS binaries. (#568) (@YamatoSecurity)
|
||||
- Debug symbols are stripped by default for smaller Linux and macOS binaries. (#568) (@YamatoSecurity)
|
||||
- Updated crate packages (@YamatoSecurity)
|
||||
- Added new output time format options. (`--US-time`, `--US-military-time`, `--European-time`) (#574) (@hitenkoku)
|
||||
- Changed output time format when `--rfc-3339` option is enabled. (#574) (@hitenkoku)
|
||||
- Changed the output time format when `--rfc-3339` option is enabled. (#574) (@hitenkoku)
|
||||
- Changed the `-R / --display-record-id` option to `-R / --hide-record-id` and now by default the event record ID is displayed. You can hide the record ID with `-R / --hide-record-id`. (#579) (@hitenkoku)
|
||||
- Added rule loading message. (#583) (@hitenkoku)
|
||||
|
||||
**Bug Fixes:**
|
||||
|
||||
- xxx
|
||||
|
||||
**Bug Fixes:**
|
||||
|
||||
- fixed bug that RecordID and RecordInformation column is showed when options is not enabled. (#577) (@hitenkoku)
|
||||
- The RecordID and RecordInformation column headers would be shown even if those options were not enabled. (#577) (@hitenkoku)
|
||||
|
||||
## v1.3.0 [2022/06/06]
|
||||
|
||||
|
||||
8
Cargo.lock
generated
8
Cargo.lock
generated
@@ -175,7 +175,7 @@ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
|
||||
dependencies = [
|
||||
"camino",
|
||||
"cargo-platform",
|
||||
"semver 1.0.9",
|
||||
"semver 1.0.10",
|
||||
"serde",
|
||||
"serde_json",
|
||||
]
|
||||
@@ -692,7 +692,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "hayabusa"
|
||||
version = "1.3.1-dev"
|
||||
version = "1.3.1"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"bytesize",
|
||||
@@ -1474,9 +1474,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "semver"
|
||||
version = "1.0.9"
|
||||
version = "1.0.10"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8cb243bdfdb5936c8dc3c45762a19d12ab4550cdc753bc247637d4ec35a040fd"
|
||||
checksum = "a41d061efea015927ac527063765e73601444cdc344ba855bc7bd44578b25e1c"
|
||||
dependencies = [
|
||||
"serde",
|
||||
]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "hayabusa"
|
||||
version = "1.3.1-dev"
|
||||
version = "1.3.1"
|
||||
authors = ["Yamato Security @SecurityYamato"]
|
||||
edition = "2021"
|
||||
|
||||
|
||||
@@ -102,7 +102,7 @@ fn build_app<'a>() -> ArgMatches<'a> {
|
||||
--contributors 'Prints the list of contributors.'";
|
||||
App::new(&program)
|
||||
.about("Hayabusa: Aiming to be the world's greatest Windows event log analysis tool!")
|
||||
.version("1.3.1-dev")
|
||||
.version("1.3.1")
|
||||
.author("Yamato Security (https://github.com/Yamato-Security/hayabusa) @SecurityYamato")
|
||||
.setting(AppSettings::VersionlessSubcommands)
|
||||
.arg(
|
||||
|
||||
Reference in New Issue
Block a user