Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.5.0 #125

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and
this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.5.0] - 2024-11-26

### Changed

Expand All @@ -26,9 +26,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
be created, logs will be printed to stdout.
- Changed `source` to `sensor`, which is a more appropriate term for the name of
the device that sensed/captured the raw event.
- Updated the protocol version of the review, giganto.
- Changed `REQUIRED_MANAGER_VERSION` to "0.41.0".
- Changed `REQUIRED_GIGANTO_VERSION` to "0.23.0".
- Changed `REQUIRED_GIGANTO_VERSION` to "0.23.0".

### Removed

Expand Down Expand Up @@ -137,7 +135,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
- Send the generated `time series` to `giganto`'s ingest.
- Save the model's id and the last time the timeseries was sent to a file.

[Unreleased]: https://github.com/aicers/crusher/compare/0.4.1...main
[0.5.0]: https://github.com/aicers/crusher/compare/0.4.1...0.5.0
[0.4.1]: https://github.com/aicers/crusher/compare/0.4.0...0.4.1
[0.4.0]: https://github.com/aicers/crusher/compare/0.3.2...0.4.0
[0.3.2]: https://github.com/aicers/crusher/compare/0.3.1...0.3.2
Expand Down
114 changes: 1 addition & 113 deletions Cargo.lock

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

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "crusher"
version = "0.4.1"
version = "0.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down Expand Up @@ -28,9 +28,7 @@ rustls = { version = "0.23", default-features = false, features = [
rustls-pemfile = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml_edit = "0.22"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = "0.3"
x509-parser = "0.16"
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Crusher generates statistics from raw events.
## Requirements

- REview 0.39.0 or higher
- Giganto 0.21.0 or higher
- Giganto 0.23.0 or higher

## Usage

Expand Down Expand Up @@ -38,7 +38,8 @@ In these commands:
specified by repeating the `--ca-certs` option.
- `<SERVER_NAME>` is the name of the Manager server, and
`<SERVER_IP>:<SERVER_PORT>` is the IP address and port number of the Manager
server. Ensure that `<SERVER_NAME>` matches the DNS name specified in the certificate.
server. Ensure that `<SERVER_NAME>` matches the DNS name specified in the
certificate.

## Example

Expand Down
2 changes: 1 addition & 1 deletion src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use tracing::{error, info, trace, warn};

use crate::client::SERVER_RETRY_INTERVAL;

const REQUIRED_MANAGER_VERSION: &str = "0.41.0";
const REQUIRED_MANAGER_VERSION: &str = "0.39.0";
const MAX_RETRIES: u8 = 3;

#[derive(Debug, Deserialize, Clone)]
Expand Down