Skip to content

Commit

Permalink
pre-release: airup v0.10.0-rc.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sisungo committed May 2, 2024
1 parent bccfd7a commit b9cec54
Show file tree
Hide file tree
Showing 16 changed files with 5 additions and 475 deletions.
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ members = [
"airupfx/airupfx-macros",
"airupfx/airupfx-isolator",
"airupfx/airupfx-extensions",
"extensions/airup-eventsourced",
"extensions/fallback-logger",
]
resolver = "2"
Expand Down
2 changes: 0 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ cargo build --release
A standard Airup installation consists of the following files:
- `airupd`: The main Airup daemon binary.
- `airup`: A CLI utility to inspect or manipulate Airup components.
- \[`airup-eventsourced`\]: A daemon which collects system events and sends them to the Airup event bus. It also maintains some
optional functions like timers. This is optional.
- \[`fallback-logger`\]: An Airup extension that implements a simple logger for the Airup Logger Interface for fallback use.
This is not subject to be executed directly by the user and is usually placed at `/usr/libexec/airup/fallback-logger`.
- \[`airup-debug`\]: A CLI utility for debugging Airup.
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Supported Versions
The `HEAD` and the latest release are supported by the Airup developers. The maintained versions are:
- Mainline: `0.10.0-rc.4`
- Mainline: `0.10.0-rc.5`
- Stable: `0.9.4`

## Reporting a Vulnerability
Expand Down
2 changes: 1 addition & 1 deletion airup-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["sisungo <[email protected]>"]
description = "SDK library of Airup"
documentation = "https://docs.rs/airup-sdk"
repository = "https://github.com/sisungo/airup"
version = "0.10.0-rc.4"
version = "0.10.0-rc.5"
edition = "2021"
license = "MIT"

Expand Down
1 change: 0 additions & 1 deletion airup-sdk/src/files/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
pub mod milestone;
pub mod service;
pub mod system_conf;
pub mod timer;

pub use milestone::Milestone;
pub use service::Service;
Expand Down
89 changes: 0 additions & 89 deletions airup-sdk/src/files/timer.rs

This file was deleted.

2 changes: 1 addition & 1 deletion airup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "airup"
authors = ["sisungo <[email protected]>"]
version = "0.10.0-rc.4"
version = "0.10.0-rc.5"
edition = "2021"
license = "MIT"
publish = false
Expand Down
7 changes: 1 addition & 6 deletions airup/src/edit.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use airup_sdk::{
blocking::{files, fs::DirChain},
files::{timer::Timer, Service},
files::Service,
};
use anyhow::anyhow;
use clap::Parser;
Expand All @@ -27,11 +27,6 @@ pub fn main(cmdline: Cmdline) -> anyhow::Result<()> {
files::read_merge::<Service>(vec![service, s.into()])?;
Ok(())
})
} else if cmdline.file.strip_suffix(".airt").is_some() {
do_edit(&editor, &find_or_create_service(&cmdline.file)?, |s| {
files::read_merge::<Timer>(vec![s.into()])?;
Ok(())
})
} else {
let (n, name) = cmdline.file.split('.').enumerate().last().unwrap();
if n > 0 {
Expand Down
2 changes: 1 addition & 1 deletion airupd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "airupd"
authors = ["sisungo <[email protected]>"]
version = "0.10.0-rc.4"
version = "0.10.0-rc.5"
edition = "2021"
license = "MIT"
publish = false
Expand Down
17 changes: 0 additions & 17 deletions extensions/airup-eventsourced/Cargo.toml

This file was deleted.

134 changes: 0 additions & 134 deletions extensions/airup-eventsourced/src/app.rs

This file was deleted.

13 changes: 0 additions & 13 deletions extensions/airup-eventsourced/src/main.rs

This file was deleted.

51 changes: 0 additions & 51 deletions extensions/airup-eventsourced/src/timer/app.rs

This file was deleted.

Loading

0 comments on commit b9cec54

Please sign in to comment.