Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.18.1 #457

Merged
merged 25 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d4ba91a
Merge pull request #433 from xrelkd/release/0.18.0
xrelkd May 26, 2024
648d6f5
build(deps): bump http-serde from 2.1.0 to 2.1.1 (#435)
dependabot[bot] May 29, 2024
7da2653
build(deps): bump tokio from 1.37.0 to 1.38.0 (#436)
dependabot[bot] May 31, 2024
21adbf7
build(deps): bump toml from 0.8.13 to 0.8.14 (#437)
dependabot[bot] Jun 4, 2024
947d356
build(deps): bump DeterminateSystems/nix-installer-action from 11 to …
dependabot[bot] Jun 4, 2024
914b5a6
build(deps): bump DeterminateSystems/magic-nix-cache-action from 6 to…
dependabot[bot] Jun 4, 2024
88018f0
build(deps): bump clap_complete from 4.5.2 to 4.5.4 (#443)
dependabot[bot] Jun 7, 2024
782f608
build(deps): bump clap from 4.5.4 to 4.5.6 (#442)
dependabot[bot] Jun 7, 2024
c216711
build(deps): bump clap_complete from 4.5.4 to 4.5.5 (#444)
dependabot[bot] Jun 8, 2024
e685bf5
build(deps): bump clap from 4.5.6 to 4.5.7 (#446)
dependabot[bot] Jun 11, 2024
0bb1869
build(deps): bump regex from 1.10.4 to 1.10.5 (#445)
dependabot[bot] Jun 11, 2024
bf1df3f
style(crates/proto): apply formatter
xrelkd Jun 14, 2024
eae64d6
chore(nix): replace `clang-format` with `buf`
xrelkd Jun 14, 2024
cb50b4b
Merge pull request #447 from xrelkd/style
xrelkd Jun 14, 2024
d01f941
build(deps): bump mio from 0.8.11 to 1.0.0 (#448)
dependabot[bot] Jun 14, 2024
7809b2b
build(deps): bump docker/bake-action from 4 to 5 (#450)
dependabot[bot] Jun 17, 2024
2b5cc28
build(deps): bump mozilla-actions/sccache-action from 0.0.4 to 0.0.5 …
dependabot[bot] Jun 17, 2024
4ded172
build(deps): bump zbus from 4.2.2 to 4.3.0 (#449)
dependabot[bot] Jun 17, 2024
feeb691
build(deps): bump wl-clipboard-rs from 0.8.1 to 0.9.0 (#453)
dependabot[bot] Jun 20, 2024
4cfd75f
build(deps): bump clap_complete from 4.5.5 to 4.5.6 (#452)
dependabot[bot] Jun 20, 2024
7df1ecc
build(deps): bump shadow-rs from 0.28.0 to 0.29.0 (#454)
dependabot[bot] Jun 25, 2024
1231928
build(deps): bump serde_json from 1.0.117 to 1.0.118 (#455)
dependabot[bot] Jun 26, 2024
cde9d84
chore(nix): update `flake.lock`
xrelkd Jun 26, 2024
f3a86f7
fix(crates/clipboard): allow `dead_code` in tests
xrelkd Jun 26, 2024
6e7d6db
build: bump version to 0.18.1
xrelkd Jun 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
bake-target: clipcat

- name: Build container image
uses: docker/bake-action@v4
uses: docker/bake-action@v5
with:
pull: true
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lints.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
uses: DeterminateSystems/nix-installer-action@v12

- name: Install treefmt
run: nix profile install 'nixpkgs#treefmt'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
uses: DeterminateSystems/nix-installer-action@v12

- name: Build Nix Flake
run: nix build
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
- uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
uses: DeterminateSystems/nix-installer-action@v12

- uses: DeterminateSystems/magic-nix-cache-action@v6
- uses: DeterminateSystems/magic-nix-cache-action@v7

- name: Show rustfmt version
run: |
Expand All @@ -60,9 +60,9 @@ jobs:
- uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
uses: DeterminateSystems/nix-installer-action@v12

- uses: DeterminateSystems/magic-nix-cache-action@v6
- uses: DeterminateSystems/magic-nix-cache-action@v7

- name: Pre Cache
run: |
Expand All @@ -79,7 +79,7 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('flake.lock', '**/Cargo.lock') }}

- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.4
uses: mozilla-actions/sccache-action@v0.0.5

- name: Show cargo clippy version
run: |
Expand All @@ -106,9 +106,9 @@ jobs:
- uses: actions/checkout@v4

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
uses: DeterminateSystems/nix-installer-action@v12

- uses: DeterminateSystems/magic-nix-cache-action@v6
- uses: DeterminateSystems/magic-nix-cache-action@v7

- name: Pre Cache
run: |
Expand All @@ -125,7 +125,7 @@ jobs:
key: ${{ runner.os }}-cargo-${{ matrix.mode }}-${{ hashFiles('flake.lock', '**/Cargo.lock') }}

- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.4
uses: mozilla-actions/sccache-action@v0.0.5

- name: Show cargo-nextest version
run: |
Expand All @@ -149,9 +149,9 @@ jobs:
submodules: "true"

- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v11
uses: DeterminateSystems/nix-installer-action@v12

- uses: DeterminateSystems/magic-nix-cache-action@v6
- uses: DeterminateSystems/magic-nix-cache-action@v7

- name: Pre Cache
run: |
Expand All @@ -168,7 +168,7 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('flake.lock', '**/Cargo.lock') }}

- name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.4
uses: mozilla-actions/sccache-action@v0.0.5

- name: Run cargo doc
run: |
Expand Down
Loading
Loading