Skip to content

Commit

Permalink
Merge branch 'main' into feature/v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmatthes committed Jan 12, 2024
2 parents f99249e + 6420984 commit 0c6d80e
Show file tree
Hide file tree
Showing 12 changed files with 770 additions and 110 deletions.
23 changes: 20 additions & 3 deletions .github/aeruginous.asy
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,37 @@ settings.outformat = "svg";
size (50);

// Gear.
for (int i = 0; i < 42; ++i)
draw (circle ((0,0), 1), linewidth (2) + white);
draw (circle ((0,0), 1.25), linewidth (2.3) + white);

for (int i = 0; i < 42; ++i) {
filldraw (
rotate (i * 360 / 42) * (
(0,1.42) -- (-.065,1.3) -- (.065,1.3) -- cycle
),
white,
white
);

filldraw (
rotate (i * 360 / 42) * (
(0,1.4) -- (-.05,1.3) -- (.05,1.3) -- cycle
)
);
}

for (int i = 0; i < 5; ++i)
for (int i = 0; i < 5; ++i) {
draw (rotate (72 * i) * circle ((0,1.12), .1), linewidth (1.5) + white);
draw (rotate (72 * i) * circle ((0,1.12), .1), linewidth (1));
}

draw (circle ((0,0), 1), linewidth (1.5));
draw (circle ((0,0), 1.25), linewidth (1.8));

// Project name icon.
label ("\Huge Æ", (0,0));
for (int i = 0; i < 360; ++i)
label ("\Huge \bf Æ", rotate (i) * (0.01,0), white);

label ("\Huge \bf Æ", (0,0));

/******************************************************************************/
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
with:
persist-credentials: false

- uses: taiki-e/[email protected].2
- uses: taiki-e/[email protected].3
with:
tool: just

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/logo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- uses: fregante/[email protected]

- uses: taiki-e/[email protected].2
- uses: taiki-e/[email protected].3
with:
tool: just

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
if: github.repository == 'kevinmatthes/aeruginous-rs'
runs-on: ubuntu-latest
steps:
- uses: taiki-e/[email protected].2
- uses: taiki-e/[email protected].3
with:
tool: cargo-llvm-cov

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: taiki-e/[email protected].2
- uses: taiki-e/[email protected].3
with:
tool: cargo-llvm-cov

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ronlog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
with:
python-version: 3.11

- uses: taiki-e/[email protected].2
- uses: taiki-e/[email protected].3
with:
tool: cargo-llvm-cov

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ references:
license: "CC-BY-4.0"
doi: 10.5281/zenodo.5171937
- type: software
date-released: 2024-01-08
version: 4.4.14
date-released: 2024-01-12
version: 4.4.16
abstract: A full featured, fast Command Line Argument Parser for Rust
authors:
- alias: kbknapp
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ dependencies = [

[[package]]
name = "anstream"
version = "0.6.5"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
checksum = "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba"
dependencies = [
"anstyle",
"anstyle-parse",
Expand Down Expand Up @@ -154,19 +154,19 @@ dependencies = [

[[package]]
name = "clap"
version = "4.4.14"
version = "4.4.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33e92c5c1a78c62968ec57dbc2440366a2d6e5a23faf829970ff1585dc6b18e2"
checksum = "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445"
dependencies = [
"clap_builder",
"clap_derive",
]

[[package]]
name = "clap_builder"
version = "4.4.14"
version = "4.4.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4323769dc8a61e2c39ad7dc26f6f2800524691a44d74fe3d1071a5c24db6370"
checksum = "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb"
dependencies = [
"anstream",
"anstyle",
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ version = "0.4.31"

[dependencies.clap]
features = ["derive"]
version = "4.4.14"
version = "4.4.16"

[dependencies.git2]
default-features = false
Expand Down
Binary file modified aeruginous.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
821 changes: 728 additions & 93 deletions aeruginous.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
(
references: {},
changes: {
"Fixed": [
"logo: linewidth and contrast",
],
},
)

0 comments on commit 0c6d80e

Please sign in to comment.