Skip to content

Commit ac0daea

Browse files
Merge pull request #17 from gianzellweger/dev
Release 0.3.3 🪨 🚀
2 parents 2828494 + 29f91ea commit ac0daea

9 files changed

+344
-103
lines changed

.github/dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ updates:
44
directory: "/"
55
target-branch: "dev"
66
schedule:
7-
interval: "weekly"
7+
interval: "daily"

.github/workflows/build.yml

+21-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@ jobs:
1313
ubuntu_build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Install Dependencies
1818
run: sudo apt-get install -y libgtk-3-dev libsoup2.4-dev libjavascriptcoregtk-4.0-dev libwebkit2gtk-4.0-dev
19+
- name: Switch to nightly
20+
run: rustup default nightly
21+
- name: Install Clippy
22+
run: rustup component add clippy
23+
- name: Clippy
24+
run: cargo clippy
1925
- name: Build
2026
run: cargo build
2127
- name: Test
@@ -24,7 +30,13 @@ jobs:
2430
windows_build:
2531
runs-on: windows-latest
2632
steps:
27-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
34+
- name: Switch to nightly
35+
run: rustup default nightly
36+
- name: Install Clippy
37+
run: rustup component add clippy
38+
- name: Clippy
39+
run: cargo clippy
2840
- name: Build
2941
run: cargo build
3042
- name: Test
@@ -33,7 +45,13 @@ jobs:
3345
macos_build:
3446
runs-on: macos-latest
3547
steps:
36-
- uses: actions/checkout@v3
48+
- uses: actions/checkout@v4
49+
- name: Switch to nightly
50+
run: rustup default nightly
51+
- name: Install Clippy
52+
run: rustup component add clippy
53+
- name: Clippy
54+
run: cargo clippy
3755
- name: Build
3856
run: cargo build
3957
- name: Test

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Login
1818
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}
1919
- name: Install Dependencies

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
If you're in this deep and haven't understood that this is satire and a joke, please read again. In general, I don't really need help because nobody will actually use this. However, if you are feeling really quirky today you can add some additional trolls or fix existing ones because they're actually not that well programmed. Be aware though: Many terrible grammar, code style and consistency choices were made on purpose. I will not accept your PR if you report those.
1+
If you're in this deep and haven't understood that this is satire and a joke, please read again. In general, I don't really need help because nobody will actually use this. However, if you are feeling really quirky today you can add some additional trolls or fix existing ones because they're actually not that well programmed. Be aware though: Many terrible grammar, code style and consistency choices were made on purpose. I will not accept your PR if you report those. If you're wondering, what the motivation for this project is/was, read [this](MOTIVATION.md)

0 commit comments

Comments
 (0)