This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
5 changed files with
53 additions and
7 deletions
|
|
|
@ -45,4 +45,4 @@ jobs:
|
|
|
|
|
with:
|
|
|
|
|
# Optional. Commit message for the created commit.
|
|
|
|
|
# Defaults to "Apply automatic changes"
|
|
|
|
|
commit_message: automatic cargo CI changes
|
|
|
|
|
commit_message: "ci: automatic cargo CI changes"
|
|
|
|
|
|
|
|
@ -0,0 +1,51 @@
|
|
|
|
|
name: Release-plz
|
|
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
|
pull-requests: write
|
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- master
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
|
|
# Release unpublished packages.
|
|
|
|
|
release-plz-release:
|
|
|
|
|
name: Release-plz release
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout repository
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
- name: Install Rust toolchain
|
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
|
- name: Run release-plz
|
|
|
|
|
uses: MarcoIeni/release-plz-action@v0.5
|
|
|
|
|
with:
|
|
|
|
|
command: release
|
|
|
|
|
env:
|
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
|
|
|
|
|
|
|
|
# Create a PR with the new versions and changelog, preparing the next release.
|
|
|
|
|
release-plz-pr:
|
|
|
|
|
name: Release-plz PR
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
concurrency:
|
|
|
|
|
group: release-plz-${{ github.ref }}
|
|
|
|
|
cancel-in-progress: false
|
|
|
|
|
steps:
|
|
|
|
|
- name: Checkout repository
|
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
with:
|
|
|
|
|
fetch-depth: 0
|
|
|
|
|
- name: Install Rust toolchain
|
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
|
- name: Run release-plz
|
|
|
|
|
uses: MarcoIeni/release-plz-action@v0.5
|
|
|
|
|
with:
|
|
|
|
|
command: release-pr
|
|
|
|
|
env:
|
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
|
|
|
|
@ -48,4 +48,4 @@ jobs:
|
|
|
|
|
with:
|
|
|
|
|
# Optional. Commit message for the created commit.
|
|
|
|
|
# Defaults to "Apply automatic changes"
|
|
|
|
|
commit_message: automatic cargo CI changes
|
|
|
|
|
commit_message: "ci: automatic cargo CI changes"
|
|
|
|
|
|
|
|
@ -77,7 +77,3 @@ Testing needs to be done separately for the rust and python parts:
|
|
|
|
|
The documentation can be automatically generated with `cargo doc --open`.
|
|
|
|
|
|
|
|
|
|
An up to date version of the Documentation can be found [here](https://docs.rs/libpt/)
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
**Pt is MIT Licensed**
|
|
|
|
|
|
|
|
@ -6,7 +6,6 @@
|
|
|
|
|
//! `pt` is a project consisting of multiple smaller crates, all bundled together in this
|
|
|
|
|
//! "main crate". Most crates will only show up if you activate their feature.
|
|
|
|
|
#![warn(clippy::pedantic, clippy::style, clippy::nursery)]
|
|
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "full")))]
|
|
|
|
|
#[cfg(feature = "bintols")]
|
|
|
|
|
pub use libpt_bintols as bintols;
|
|
|
|
|
#[cfg(feature = "cli")]
|
|
|
|
|