Skip to content

Commit

Permalink
prepare v0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Jan 4, 2024
1 parent ce21893 commit b101b48
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- v[0-9]+.*

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}

upload-assets:
needs: create-release
strategy:
matrix:
include:
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: universal-apple-darwin
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: ribeye
features: vendored-openssl
target: ${{ matrix.target }}
token: ${{ secrets.GITHUB_TOKEN }}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this project will be documented in this file.

## v0.2.0 - 2024-01-04

### Added

* add aggregator to summarize data from all files of the same day for each processor
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ribeye"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Mingwei Zhang <[email protected]>"]
readme = "README.md"
Expand Down Expand Up @@ -40,11 +40,13 @@ clap = {version = "4.3", features = ["derive"], optional = true }
tracing-subscriber = {version="0.3", features = ["env-filter"], optional = true }
rayon = { version="1.7", optional = true }
dotenvy = { version = "0.15.7", optional = true}
openssl = { version = "0.10", features = ["vendored"], optional = true }

[features]
default = ["cli"]
processors = [ "ipnet", "serde", "serde_json", "bgpkit-broker", "chrono", "itertools", "oneio", "tempfile"]
cli = [ "processors", "clap", "tracing-subscriber", "rayon", "dotenvy"]
vendored-openssl = ["openssl"]

[dev-dependencies]
tracing-subscriber = "0.3"

0 comments on commit b101b48

Please sign in to comment.