Skip to content

Commit

Permalink
release: 0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Jun 1, 2023
2 parents f21bed1 + 548c8a4 commit 33b031a
Show file tree
Hide file tree
Showing 7 changed files with 86 additions and 18 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build

on:
push:
branches: [ master ]
branches: []
pull_request:
branches: [ master ]
branches: []

defaults:
run:
Expand Down Expand Up @@ -48,14 +48,20 @@ jobs:
- name: Build
run: |
cargo build --target ${{ matrix.target }}
cargo build --release --target ${{ matrix.target }}
- name: Clippy
run: |
cargo clippy --release --target ${{ matrix.target }}
cargo clippy --release --all-features --target ${{ matrix.target }}
- name: Tests
- name: Tests (Debug)
run: |
cargo test --target ${{ matrix.target }}
cargo test --all-features --target ${{ matrix.target }}
- name: Tests (Release)
run: |
cargo test --release --target ${{ matrix.target }}
cargo test --release --all-features --target ${{ matrix.target }}
53 changes: 53 additions & 0 deletions .github/workflows/msrv.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: MSRV

on:
push:
branches: []
pull_request:
branches: []

defaults:
run:
shell: bash

env:
CARGO_TERM_COLOR: always

jobs:
all:
name: All

strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- x86_64-apple-darwin
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest

runs-on: ${{matrix.os}}

env:
RUSTFLAGS: "-D warnings"

steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: taiki-e/install-action@v2
with:
tool: cargo-msrv

- name: Info
run: |
rustup --version
cargo --version
cargo clippy --version
- name: MSRV
run: |
cargo msrv verify -- cargo check --all-features
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@



## [0.6.8](https://github.com/Blobfolio/argyle/releases/tag/v0.6.8) - 2023-06-01

### Changed

* Bump dev dependencies
* CI: test in debug and release modes
* CI: test MSRV



## [0.6.7](https://github.com/Blobfolio/argyle/releases/tag/v0.6.7) - 2023-02-07

### Changed
Expand Down
4 changes: 2 additions & 2 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project Dependencies
Package: argyle
Version: 0.6.7
Generated: 2023-02-08 04:34:24 UTC
Version: 0.6.8
Generated: 2023-06-01 20:08:59 UTC

This package has no dependencies.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "argyle"
version = "0.6.7"
version = "0.6.8"
authors = ["Blobfolio, LLC. <[email protected]>"]
edition = "2021"
rust-version = "1.62"
Expand Down Expand Up @@ -32,7 +32,7 @@ man-dir = "./"
credits-dir = "./"

[dev-dependencies]
brunch = "0.4.*"
brunch = "0.5.*"

[[bench]]
name = "fm_keykind"
Expand Down
19 changes: 9 additions & 10 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,6 @@ bench BENCH="":
exit 0


# Check Release!
@check:
# First let's build the Rust bit.
cargo check \
--release \
--target x86_64-unknown-linux-gnu \
--all-features \
--target-dir "{{ cargo_dir }}"


# Clean Cargo crap.
@clean:
# Most things go here.
Expand Down Expand Up @@ -134,6 +124,15 @@ bench BENCH="":
# Unit tests!
@test:
clear
cargo test \
--all-features \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

cargo test \
--target x86_64-unknown-linux-gnu \
--target-dir "{{ cargo_dir }}"

cargo test \
--release \
--all-features \
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fn _main() -> Result<(), ArgyleError> {
```
*/

#![deny(unsafe_code)]
#![forbid(unsafe_code)]

#![warn(
clippy::filetype_is_file,
Expand Down

0 comments on commit 33b031a

Please sign in to comment.