Skip to content

chore: release v0.2.0 - #11

Closed
github-actions[bot] wants to merge 1 commit into
masterfrom
release-plz-2026-05-30T04-04-07Z
Closed

chore: release v0.2.0#11
github-actions[bot] wants to merge 1 commit into
masterfrom
release-plz-2026-05-30T04-04-07Z

Conversation

@github-actions

@github-actions github-actions Bot commented May 30, 2026

Copy link
Copy Markdown

🤖 New release

  • rawshift-core: 0.1.1 -> 0.2.0 (⚠ API breaking changes)
  • rawshift-image: 0.1.1 -> 0.2.0 (✓ API compatible changes)
  • rawshift: 0.1.1 -> 0.2.0 (✓ API compatible changes)

rawshift-core breaking changes

--- failure enum_missing: pub enum removed or renamed ---

Description:
A publicly-visible enum cannot be imported by its prior path. A `pub use` may have been removed, or the enum itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/enum_missing.ron

Failed in:
  enum rawshift_core::color::ColorSpace, previously in file /tmp/.tmpRybt0K/rawshift-core/src/color.rs:18
  enum rawshift_core::ColorSpace, previously in file /tmp/.tmpRybt0K/rawshift-core/src/color.rs:18
  enum rawshift_core::color::BitDepth, previously in file /tmp/.tmpRybt0K/rawshift-core/src/color.rs:63
  enum rawshift_core::BitDepth, previously in file /tmp/.tmpRybt0K/rawshift-core/src/color.rs:63

--- failure function_missing: pub fn removed or renamed ---

Description:
A publicly-visible function cannot be imported by its prior path. A `pub use` may have been removed, or the function itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/function_missing.ron

Failed in:
  function rawshift_core::pixel::rgb16_from_interleaved, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:210
  function rawshift_core::pixel::rgb16_to_interleaved, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:218

--- failure module_missing: pub module removed or renamed ---

Description:
A publicly-visible module cannot be imported by its prior path. A `pub use` may have been removed, or the module may have been renamed, removed, or made non-public.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/module_missing.ron

Failed in:
  mod rawshift_core::pixel, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:1

--- failure struct_missing: pub struct removed or renamed ---

Description:
A publicly-visible struct cannot be imported by its prior path. A `pub use` may have been removed, or the struct itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/struct_missing.ron

Failed in:
  struct rawshift_core::image::Size, previously in file /tmp/.tmpRybt0K/rawshift-core/src/image.rs:25
  struct rawshift_core::pixel::Rgb, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:123
  struct rawshift_core::Rgb, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:123
  struct rawshift_core::pixel::Rgba, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:169
  struct rawshift_core::Rgba, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:169
  struct rawshift_core::image::RgbImage, previously in file /tmp/.tmpRybt0K/rawshift-core/src/image.rs:432

--- failure trait_missing: pub trait removed or renamed ---

Description:
A publicly-visible trait cannot be imported by its prior path. A `pub use` may have been removed, or the trait itself may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/trait_missing.ron

Failed in:
  trait rawshift_core::metadata::MetadataExtractor, previously in file /tmp/.tmpRybt0K/rawshift-core/src/metadata.rs:379
  trait rawshift_core::MetadataExtractor, previously in file /tmp/.tmpRybt0K/rawshift-core/src/metadata.rs:379
  trait rawshift_core::pixel::FromF32, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:33
  trait rawshift_core::FromF32, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:33
  trait rawshift_core::pixel::Sample, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:10
  trait rawshift_core::Sample, previously in file /tmp/.tmpRybt0K/rawshift-core/src/pixel.rs:10
Changelog

rawshift

0.2.0 - 2026-07-19

Added

  • (core) [breaking] replace generic primitives with gamut re-exports, keep sensor types
  • (image) add libaom as an optional AVIF encoder backend
  • (dng) [breaking] migrate DNG decode/encode to gamut-dng; delete the binrw TIFF layer
  • (formats) [breaking] migrate ARW/CR2/NEF/CR3 IFD walking to gamut-ifd
  • (metadata) [breaking] migrate metadata stack to gamut-exif/gamut-icc/gamut-xmp
  • (deps) add gamut as pinned git dependency and raise MSRV to 1.92

Other

  • Merge pull request feat(deps): add gamut as pinned git dependency and raise MSRV to 1.92 #40 from justin13888/17-add-gamut-pinned-git-dependency
  • (video) park rawshift-video as an unpublished placeholder for v1
  • add v1 design doc, permanent support matrix, and gamut policy
  • Revise Scope section and add key priorities
  • Update README with project status and scope
  • Merge branch 'master' into avif-libaom-encoder


This PR was generated with release-plz.

@github-actions
github-actions Bot force-pushed the release-plz-2026-05-30T04-04-07Z branch 2 times, most recently from a370cd5 to b4c9b6f Compare May 31, 2026 13:30
@github-actions
github-actions Bot force-pushed the release-plz-2026-05-30T04-04-07Z branch 2 times, most recently from c603d80 to 606050b Compare July 18, 2026 15:34
@github-actions github-actions Bot changed the title chore: release v0.1.2 chore: release v0.2.0 Jul 18, 2026
@github-actions
github-actions Bot force-pushed the release-plz-2026-05-30T04-04-07Z branch 2 times, most recently from 063d0f5 to 449ef54 Compare July 19, 2026 01:31
@github-actions
github-actions Bot force-pushed the release-plz-2026-05-30T04-04-07Z branch from 449ef54 to 8926c6e Compare July 19, 2026 01:36
@github-actions github-actions Bot closed this Jul 19, 2026
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