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

Bump the cargo group with 3 updates #2122

Merged
merged 2 commits into from
Dec 4, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 4, 2023

Bumps the cargo group with 3 updates: clap, spade and cmd_lib.

Updates clap from 4.4.8 to 4.4.10

Release notes

Sourced from clap's releases.

v4.4.10

[4.4.10] - 2023-11-28

Documentation

  • Link out to changelog
  • Cross link derive's attribute reference to derive tutorial

v4.4.9

[4.4.9] - 2023-11-27

Fixes

  • (help) Show correct Command::about under flattened headings
  • (help) Respect hide when flattening subcommands
Changelog

Sourced from clap's changelog.

[4.4.10] - 2023-11-28

Documentation

  • Link out to changelog
  • Cross link derive's attribute reference to derive tutorial

[4.4.9] - 2023-11-27

Fixes

  • (help) Show correct Command::about under flattened headings
  • (help) Respect hide when flattening subcommands
Commits
  • c0a1814 chore: Release
  • c83e681 docs: Update changelog
  • 91bcac4 Merge pull request #5230 from epage/migrate
  • 030d875 docs: Link out to the changelog at the relevant tag
  • b661a9d Merge pull request #5229 from epage/derive
  • a08587b docs(derive): Link to tutorial sections for attributes
  • 21b671f chore: Release
  • 93ba76d docs: Update changelog
  • c1c55b3 Merge pull request #5228 from epage/flat
  • b13f6d9 fix(help): Hide 'help' if only flattened subcommand
  • Additional commits viewable in compare view

Updates spade from 2.4.0 to 2.4.1

Changelog

Sourced from spade's changelog.

[2.4.1] - 2023-12-01

Fix

  • Fixes panic during refinement due to rounding errors (see #96)
  • Inserting a vertex onto a constraint edge of a degenerate CDT would not create a new constraint edge.

[2.4] - 2023-11-19

Added

  • Implements Delaunay refinement: Adds ConstrainedDelaunayTriangulation::refine, along with RefinementParameters to modify the refinement behavior.
  • Added method ConstrainedDelaunayTriangulation::add_constraint_edges for simpler creation of strips and loops of connected constraint edges.
  • Adds impl From<DelaunayTriangulation<...>> for ConstrainedDelaunayTriangulation<...> for converting regular triangulations into CDTs.

[2.3.1] - 2023-11-14

Fix

  • Fixes compilation issues when using serde together with --no-default-features (#95)

[2.3.0] - 2023-11-09

Added

  • Adds no_std support (when using default-features = false, #92)

[2.2.1] - 2023-11-03

Changed

  • Specializes nth and nth_back for any vertex, face and edge iterator
  • Removed optional dependency (#91)
  • Updated robust crate to 1.1.0 (#90)

[2.2.0] - 2023-04-18

Added

  • Added DirectedEdgeHandle::center and UndirectedEdgeHandle::center
  • Added UndirectedEdgeHandle::nearest_point
  • Adds UndirectedEdgeHandle::is_constraint_edge and DirectedEdgeHandle::is_constraint_edge (only implemented for edge handles of a CDT)

Fix

  • Fix nearest_neighbor hinting

[2.1.0] - 2023-01-01

Added

  • Added crate::FloatTriangulations for additional methods of triangulations over f32 or f64
  • Added FloatTriangulation::get_edges_in_rectangle
  • Added FloatTriangulation::get_edges_in_circle
  • Added FloatTriangulation::get_vertices_in_rectangle
  • Added FloatTriangulation::get_vertices_in_circle
  • Added index function for any fixed and dynamic handle, returning the internal index of the element.
  • Added missing DelaunayTriangulation::Clone implementation

... (truncated)

Commits
  • b5830cd (cargo-release) version 2.4.1
  • e274c3e Prepares changelog for 2.4.1 release.
  • 7e8a72a Fixes #96
  • 7cf75f9 Bugfix: Inserting a vertex into a degenerate CDT onto a constraint edge did n...
  • 8582f1c Updates build shield URL
  • See full diff in compare view

Updates cmd_lib from 1.9.0 to 1.9.3

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the cargo group with 3 updates: [clap](https://github.com/clap-rs/clap), [spade](https://github.com/Stoeoef/spade) and [cmd_lib](https://github.com/rust-shell-script/rust_cmd_lib).


Updates `clap` from 4.4.8 to 4.4.10
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.8...v4.4.10)

Updates `spade` from 2.4.0 to 2.4.1
- [Changelog](https://github.com/Stoeoef/spade/blob/master/CHANGELOG.md)
- [Commits](Stoeoef/spade@v2.4.0...v2.4.1)

Updates `cmd_lib` from 1.9.0 to 1.9.3
- [Release notes](https://github.com/rust-shell-script/rust_cmd_lib/releases)
- [Commits](https://github.com/rust-shell-script/rust_cmd_lib/commits)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: spade
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: cmd_lib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from hannobraun as a code owner December 4, 2023 12:24
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Dec 4, 2023
@hannobraun hannobraun merged commit 78919aa into main Dec 4, 2023
4 checks passed
@hannobraun hannobraun deleted the dependabot/cargo/cargo-7dace6ea60 branch December 4, 2023 12:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant