Skip to content

Commit

Permalink
Update deps and CI to prepare for new release. (#53)
Browse files Browse the repository at this point in the history
* Dependencies are updated to the latest versions.
* CI is now using Rust 1.81 as the stable Rust version.
* CI is now checking with latest typos.
  • Loading branch information
waywardmonkeys authored Sep 18, 2024
1 parent a44c763 commit a759e61
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ env:
# version like 1.70. Note that we only specify MAJOR.MINOR and not PATCH so that bugfixes still
# come automatically. If the version specified here is no longer the latest stable version,
# then please feel free to submit a PR that adjusts it along with the potential clippy fixes.
RUST_STABLE_VER: "1.80" # In quotes because otherwise (e.g.) 1.70 would be interpreted as 1.7
RUST_STABLE_VER: "1.81" # In quotes because otherwise (e.g.) 1.70 would be interpreted as 1.7
# The purpose of checking with the minimum supported Rust toolchain is to detect its staleness.
# If the compilation fails, then the version specified here needs to be bumped up to reality.
# Be sure to also update the rust-version property in the workspace Cargo.toml file,
Expand Down Expand Up @@ -271,4 +271,4 @@ jobs:
- uses: actions/checkout@v4

- name: check typos
uses: crate-ci/typos@v1.23.2
uses: crate-ci/typos@v1.24.6
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ features = ["serde"]

[dependencies]
# NOTE: Make sure to keep this in sync with the version badge in README.md
kurbo = { version = "0.11.0", default-features = false }
kurbo = { version = "0.11.1", default-features = false }
smallvec = "1.13.2"

[dependencies.serde]
version = "1.0.203"
version = "1.0.210"
optional = true
default-features = false
features = ["alloc", "derive"]

[dependencies.serde_bytes]
version = "0.11.14"
version = "0.11.15"
optional = true
default-features = false
features = ["alloc"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![Linebender Zulip, #kurbo stream](https://img.shields.io/badge/Linebender-%23kurbo-red?logo=Zulip)](https://xi.zulipchat.com/#narrow/stream/260979-kurbo)
[![dependency status](https://deps.rs/repo/github/linebender/peniko/status.svg)](https://deps.rs/repo/github/linebender/peniko)
[![MIT/Apache 2.0](https://img.shields.io/badge/license-MIT%2FApache-blue.svg)](#license)
[![kurbo version 0.11](https://img.shields.io/badge/kurbo-v0.11-orange.svg)](https://crates.io/crates/kurbo)
[![kurbo version 0.11.1](https://img.shields.io/badge/kurbo-v0.11.1-orange.svg)](https://crates.io/crates/kurbo)
[![Build status](https://github.com/linebender/peniko/workflows/CI/badge.svg)](https://github.com/linebender/peniko/actions)
[![Crates.io](https://img.shields.io/crates/v/peniko.svg)](https://crates.io/crates/peniko)
[![Docs](https://docs.rs/peniko/badge.svg)](https://docs.rs/peniko)
Expand Down

0 comments on commit a759e61

Please sign in to comment.