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

build(deps): bump gptman from 0.6.5 to 1.0.0 #140

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 6, 2022

Bumps gptman from 0.6.5 to 1.0.0.

Release notes

Sourced from gptman's releases.

Release v1.0.0

  • [BREAKING] Disable cli feature by default (#81)
  • [BREAKING] Make Error type non_exhaustive so the API can be stabilized better (#94)
  • [BREAKING CLI]: Have --output take lowercase field names as arguments (#77)
  • [CLI] Replace structopt with clap 3.1 (#77)
  • Define library MSRV of 1.46 and CLI MSRV of 1.54 (#79)
  • Remove useless allocation (#93)
  • Update repository URL (#82)
  • Update dependencies

Release v0.8.4

  • Add GPTPartitionEntry::range and GPT::get_partition_byte_range (#76)

Release v0.8.3

  • Remove count-zeroes from library's dependency (only used by CLI)
  • Fix licensing missing author and date

Release v0.8.2

  • Change release build to provide MUSL build for Linux by default
  • Add download script on http://gptman.cecton.com
  • [CLI] Add feature to check a partition for zeroes (useful to check if you accidentally trimmed it)

Release v0.8.1

  • Fix some rustc and clippy warnings (does not break API of gptman's lib)
  • Update dependencies: crc from 1.0.0 to 2.0.0 and nix from 0.18 to 0.22
  • Fix spacing in doc
  • [CLI] Fix invalid maximum size calculation in resize command

Release v0.8.0

  • [BREAKING] Switch to thiserror: it is possible that the type Error has changed a tad bit because of this change. I did not investigated so I considered this a breaking change.
  • Update all dependencies (most notable: rand from version 0.7 to version 0.8)

Release v0.7.3

  • Update license badge
  • Include test fixtures in packaged crate

Release v0.7.2

  • [CLI] Automatic binary release on GitHub

v0.7.0

This new releases brings a lot of new fixes and changes. Also a few breaking changes:

  • The dependencies have been upgraded to the latest
  • [BREAKING] A typo in the API has been fixed gptman::GPTPartitionEntry::unique_parition_guid is now gptman::GPTPartitionEntry::unique_partition_guid
  • All structs now implement PartialEq and Eq
  • A lot of improvement in the documentation
  • [CLI] Now capable to also display the partitions in the order on the disk
  • [CLI] Fix missing doc like how to quit the program
  • Fix calculation of first_usable_lba for backup GPT
  • Partitions boundaries are now check ( partitions must have positive size, must not overlap, and must fit within the disk)

... (truncated)

Changelog

Sourced from gptman's changelog.

v1.0.0

  • [BREAKING] Disable cli feature by default (#81)
  • [BREAKING] Make Error type non_exhaustive so the API can be stabilized better (#94)
  • [BREAKING CLI]: Have --output take lowercase field names as arguments (#77)
  • [CLI] Replace structopt with clap 3.1 (#77)
  • Define library MSRV of 1.46 and CLI MSRV of 1.54 (#79)
  • Remove useless allocation (#93)
  • Update repository URL (#82)
  • Update dependencies

v0.8.4

  • Add GPTPartitionEntry::range and GPT::get_partition_byte_range (#76)

v0.8.3

  • Remove count-zeroes from library's dependency (only used by CLI)
  • Fix licensing missing author and date

v0.8.2

  • Change release build to provide MUSL build for Linux by default
  • Add download script on http://gptman.cecton.com
  • [CLI] Add feature to check a partition for zeroes (useful to check if you accidentally trimmed it)

v0.8.1

  • Fix some rustc and clippy warnings (does not break API of gptman's lib)
  • Update dependencies: crc from 1.0.0 to 2.0.0 and nix from 0.18 to 0.22
  • Fix spacing in doc
  • [CLI] Fix invalid maximum size calculation in resize command

v0.8.0

  • [BREAKING] Switch to thiserror: it is possible that the type Error has changed a tad bit because of this change. I did not investigated so I considered this a breaking change.
  • Update all dependencies (most notable: rand from version 0.7 to version 0.8)

v0.7.3

  • Update license badge
  • Include test fixtures in packaged crate

v0.7.2 (yanked)

  • [CLI] Automatic binary release on GitHub

v0.7.1 (yanked)

  • Remove rustfmt and clippy checks for branch master and tags

... (truncated)

Commits
  • 24a6c94 (cargo-release) version 1.0.0
  • c9048c9 Prepare for 1.0 release (#78)
  • 248911d cargo: update (#96)
  • 0cf4885 workflows: Fix invalid permission declaration in update workflow (#95)
  • 31d6386 Make Error type non_exhaustive so the API can be stabilized better (#94)
  • ed161ac Remove useless allocation (#93)
  • 4b25718 workflows: Fix permissions of cargo update workflow (#92)
  • cbece6b cargo: Widen nix dependency range (#91)
  • 9aed45e Add monthly workflow to update dependencies (#89)
  • 9c3aec8 Update dependencies (#88)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [gptman](https://github.com/rust-disk-partition-management/gptman) from 0.6.5 to 1.0.0.
- [Release notes](https://github.com/rust-disk-partition-management/gptman/releases)
- [Changelog](https://github.com/rust-disk-partition-management/gptman/blob/main/CHANGELOG.md)
- [Commits](rust-disk-partition-management/gptman@v0.6.5...v1.0.0)

---
updated-dependencies:
- dependency-name: gptman
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Jun 6, 2022

The following labels could not be found: dependency.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants