From 6fb7fbb217db7ff44c67800100ba501750a29619 Mon Sep 17 00:00:00 2001 From: banditopazzo Date: Thu, 20 Oct 2022 14:24:03 +0200 Subject: [PATCH] prepare for 0.3 --- CHANGELOG.md | 2 ++ Cargo.lock | 24 ++++++++++++------------ README.md | 2 +- bpf-common/Cargo.toml | 2 +- engine-api/Cargo.toml | 2 +- modules/file-system-monitor/Cargo.toml | 2 +- modules/network-monitor/Cargo.toml | 2 +- modules/process-monitor/Cargo.toml | 2 +- modules/syscall-monitor/Cargo.toml | 2 +- pulsar-core/Cargo.toml | 2 +- pulsar/Cargo.toml | 2 +- test-suite/Cargo.toml | 2 +- validatron/Cargo.toml | 2 +- validatron/derive/Cargo.toml | 2 +- xtask/Cargo.toml | 2 +- 15 files changed, 27 insertions(+), 25 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aabd38c3..623eb851 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2022-10-20 + ### Added - Pulsar installer script - Github release workflow diff --git a/Cargo.lock b/Cargo.lock index 93636d4b..8db86a7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -163,7 +163,7 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bpf-common" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "aya", @@ -463,7 +463,7 @@ dependencies = [ [[package]] name = "engine-api" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "axum", @@ -502,7 +502,7 @@ dependencies = [ [[package]] name = "file-system-monitor" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bpf-common", "log", @@ -981,7 +981,7 @@ dependencies = [ [[package]] name = "network-monitor" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bpf-common", "dns-parser", @@ -1202,7 +1202,7 @@ dependencies = [ [[package]] name = "process-monitor" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "bpf-common", @@ -1231,7 +1231,7 @@ dependencies = [ [[package]] name = "pulsar" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "bpf-common", @@ -1257,7 +1257,7 @@ dependencies = [ [[package]] name = "pulsar-core" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -1634,7 +1634,7 @@ dependencies = [ [[package]] name = "syscall-monitor" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bpf-common", "log", @@ -1678,7 +1678,7 @@ dependencies = [ [[package]] name = "test-suite" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bpf-common", "file-system-monitor", @@ -1891,7 +1891,7 @@ checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04" [[package]] name = "validatron" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "lalrpop", @@ -1905,7 +1905,7 @@ dependencies = [ [[package]] name = "validatron-derive" -version = "0.2.0" +version = "0.3.0" dependencies = [ "proc-macro2", "quote", @@ -2096,7 +2096,7 @@ checksum = "88301b56c26dd9bf5c43d858538f82d6f3f7764767defbc5d34e59459901c41a" [[package]] name = "xtask" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "xshell", diff --git a/README.md b/README.md index 8fde2cce..b6f4ec0b 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ We do not recommend build Pulsar from source. Building from source is only neces If you're interested in contributing to Pulsar — thank you! -We have a [contributing guide](CONTRIBUTING.md) which will help you getting involved in the project. +We have a [contributing guide](CONTRIBUTING.md) which will help you getting involved in the project. Also check the [Developers](https://pulsar.sh/docs/category/developers) section of the documentation for more information on Pulsar development. ## Community diff --git a/bpf-common/Cargo.toml b/bpf-common/Cargo.toml index 5e6d8aeb..6d152185 100644 --- a/bpf-common/Cargo.toml +++ b/bpf-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bpf-common" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021" diff --git a/engine-api/Cargo.toml b/engine-api/Cargo.toml index b019e0f1..8e0235ab 100644 --- a/engine-api/Cargo.toml +++ b/engine-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "engine-api" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021" diff --git a/modules/file-system-monitor/Cargo.toml b/modules/file-system-monitor/Cargo.toml index 79de12aa..7dc0a92f 100644 --- a/modules/file-system-monitor/Cargo.toml +++ b/modules/file-system-monitor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "file-system-monitor" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0 with BPF probe under GPL-2.0" edition = "2021" diff --git a/modules/network-monitor/Cargo.toml b/modules/network-monitor/Cargo.toml index a980fe8f..af649587 100644 --- a/modules/network-monitor/Cargo.toml +++ b/modules/network-monitor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "network-monitor" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0 with BPF probe under GPL-2.0" edition = "2021" diff --git a/modules/process-monitor/Cargo.toml b/modules/process-monitor/Cargo.toml index becfe668..a6765328 100644 --- a/modules/process-monitor/Cargo.toml +++ b/modules/process-monitor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "process-monitor" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0 with BPF probe under GPL-2.0" edition = "2021" diff --git a/modules/syscall-monitor/Cargo.toml b/modules/syscall-monitor/Cargo.toml index 167adb71..81731e02 100644 --- a/modules/syscall-monitor/Cargo.toml +++ b/modules/syscall-monitor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "syscall-monitor" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0 with BPF probe under GPL-2.0" edition = "2021" diff --git a/pulsar-core/Cargo.toml b/pulsar-core/Cargo.toml index fc87baf8..55541de6 100644 --- a/pulsar-core/Cargo.toml +++ b/pulsar-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pulsar-core" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021" diff --git a/pulsar/Cargo.toml b/pulsar/Cargo.toml index f572fcf4..77425425 100644 --- a/pulsar/Cargo.toml +++ b/pulsar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pulsar" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021" repository = "https://github.com/Exein-io/pulsar" diff --git a/test-suite/Cargo.toml b/test-suite/Cargo.toml index c7ebe05d..ff6e27d2 100644 --- a/test-suite/Cargo.toml +++ b/test-suite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-suite" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021" diff --git a/validatron/Cargo.toml b/validatron/Cargo.toml index 2ee41176..8cb2ee4c 100644 --- a/validatron/Cargo.toml +++ b/validatron/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "validatron" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021" diff --git a/validatron/derive/Cargo.toml b/validatron/derive/Cargo.toml index 2e9744ef..495e6bad 100644 --- a/validatron/derive/Cargo.toml +++ b/validatron/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "validatron-derive" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 3e04dff6..892c5e35 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.2.0" +version = "0.3.0" license = "Apache-2.0" edition = "2021"