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

chore: release #257

Merged
merged 1 commit into from
Feb 10, 2025
Merged

chore: release #257

merged 1 commit into from
Feb 10, 2025

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Jan 31, 2025

🤖 New release

  • rig-core: 0.7.0 -> 0.8.0 (⚠ API breaking changes)
  • rig-mongodb: 0.2.3 -> 0.2.4 (✓ API compatible changes)
  • rig-postgres: 0.1.1 -> 0.1.2 (✓ API compatible changes)
  • rig-eternalai: 0.1.0 -> 0.2.0 (⚠ API breaking changes)
  • rig-fastembed: 0.1.0
  • rig-lancedb: 0.2.3 -> 0.2.4
  • rig-neo4j: 0.2.3 -> 0.2.4
  • rig-qdrant: 0.1.6 -> 0.1.7
  • rig-sqlite: 0.1.3 -> 0.1.4

rig-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.39.0/src/lints/enum_missing.ron

Failed in:
  enum rig::completion::ModelChoice, previously in file /tmp/.tmpkDWDRH/rig-core/src/completion.rs:220

--- failure enum_struct_variant_field_missing: pub enum struct variant's field removed or renamed ---

Description:
A publicly-visible enum has a struct variant whose field is no longer available under its prior name. It 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.39.0/src/lints/enum_struct_variant_field_missing.ron

Failed in:
  field type of variant Content::Text, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/anthropic/completion.rs:53
  field type of variant Content::ToolUse, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/anthropic/completion.rs:57

--- failure enum_variant_added: enum variant added on exhaustive enum ---

Description:
A publicly-visible enum without #[non_exhaustive] has a new variant.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#enum-variant-new
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.39.0/src/lints/enum_variant_added.ron

Failed in:
  variant Content:Image in /tmp/.tmpCkznFb/rig/rig-core/src/providers/anthropic/completion.rs:146
  variant Content:ToolResult in /tmp/.tmpCkznFb/rig/rig-core/src/providers/anthropic/completion.rs:154
  variant Content:Document in /tmp/.tmpCkznFb/rig/rig-core/src/providers/anthropic/completion.rs:161

--- failure enum_variant_missing: pub enum variant removed or renamed ---

Description:
A publicly-visible enum has at least one variant that is no longer available under its prior name. It 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.39.0/src/lints/enum_variant_missing.ron

Failed in:
  variant Content::String, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/anthropic/completion.rs:51

--- failure method_requires_different_generic_type_params: method now requires a different number of generic type parameters ---

Description:
A method now requires a different number of generic type parameters than it used to. Uses of this method that supplied the previous number of generic types will be broken.
        ref: https://doc.rust-lang.org/reference/items/generics.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.39.0/src/lints/method_requires_different_generic_type_params.ron

Failed in:
  rig::one_or_many::OneOrMany::many takes 1 generic types instead of 0, in /tmp/.tmpCkznFb/rig/rig-core/src/one_or_many.rs:73
  rig::one_or_many::OneOrMany::merge takes 1 generic types instead of 0, in /tmp/.tmpCkznFb/rig/rig-core/src/one_or_many.rs:88
  rig::OneOrMany::many takes 1 generic types instead of 0, in /tmp/.tmpCkznFb/rig/rig-core/src/one_or_many.rs:73
  rig::OneOrMany::merge takes 1 generic types instead of 0, in /tmp/.tmpCkznFb/rig/rig-core/src/one_or_many.rs:88

--- failure pub_module_level_const_missing: pub module-level const is missing ---

Description:
A public const is missing, renamed, or changed from const to static.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.39.0/src/lints/pub_module_level_const_missing.ron

Failed in:
  LLAMA_3_1_SONAR_LARGE_CHAT in file /tmp/.tmpkDWDRH/rig-core/src/providers/perplexity.rs:110
  LLAMA_3_1_SONAR_LARGE_ONLINE in file /tmp/.tmpkDWDRH/rig-core/src/providers/perplexity.rs:104
  LLAMA_3_1_8B_INSTRUCT in file /tmp/.tmpkDWDRH/rig-core/src/providers/perplexity.rs:112
  LLAMA_3_1_SONAR_HUGE_ONLINE in file /tmp/.tmpkDWDRH/rig-core/src/providers/perplexity.rs:106
  LLAMA_3_1_70B_INSTRUCT in file /tmp/.tmpkDWDRH/rig-core/src/providers/perplexity.rs:114
  LLAMA_3_1_SONAR_SMALL_CHAT in file /tmp/.tmpkDWDRH/rig-core/src/providers/perplexity.rs:108
  LLAMA_3_1_SONAR_SMALL_ONLINE in file /tmp/.tmpkDWDRH/rig-core/src/providers/perplexity.rs:102

--- 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.39.0/src/lints/struct_missing.ron

Failed in:
  struct rig::providers::deepseek::DeepSeekMessage, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/deepseek.rs:85
  struct rig::providers::deepseek::DeepSeekResponse, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/deepseek.rs:73
  struct rig::providers::xai::completion::xai_api_types::Message, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/xai/completion.rs:199
  struct rig::providers::xai::completion::xai_api_types::ToolCall, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/xai/completion.rs:162
  struct rig::providers::hyperbolic::Message, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/hyperbolic.rs:226

--- failure struct_pub_field_missing: pub struct's pub field removed or renamed ---

Description:
A publicly-visible struct has at least one public field that is no longer available under its prior name. It 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.39.0/src/lints/struct_pub_field_missing.ron

Failed in:
  field api_key of struct Client, previously in file /tmp/.tmpkDWDRH/rig-core/src/providers/deepseek.rs:27

--- failure struct_with_pub_fields_changed_type: struct with pub fields became an enum or union ---

Description:
A struct with pub fields became an enum or union, breaking accesses to its public fields.
        ref: https://github.com/obi1kenobi/cargo-semver-checks/issues/297#issuecomment-1399099659
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.39.0/src/lints/struct_with_pub_fields_changed_type.ron

Failed in:
  struct rig::providers::gemini::completion::gemini_api_types::Part became enum in file /tmp/.tmpCkznFb/rig/rig-core/src/providers/gemini/completion.rs:358
  struct rig::providers::openai::Message became enum in file /tmp/.tmpCkznFb/rig/rig-core/src/providers/openai.rs:447
  struct rig::completion::Message became enum in file /tmp/.tmpCkznFb/rig/rig-core/src/completion/message.rs:25
  struct rig::providers::cohere::Message became enum in file /tmp/.tmpCkznFb/rig/rig-core/src/providers/cohere.rs:486

rig-eternalai breaking changes

--- 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.39.0/src/lints/struct_missing.ron

Failed in:
  struct rig_eternalai::providers::eternalai::Message, previously in file /tmp/.tmpkDWDRH/rig-eternalai/src/providers/eternalai.rs:405
Changelog

rig-core

0.8.0 - 2025-02-10

Added

Fixed

Other

rig-mongodb

0.2.4 - 2025-02-10

Fixed

  • mongodb vector search example

rig-postgres

0.1.2 - 2025-02-10

Other

rig-eternalai

0.2.0 - 2025-02-10

Added

Other

rig-fastembed

0.1.0 - 2025-02-10

Added

Fixed

rig-lancedb

0.2.4 - 2025-02-10

Other

  • updated the following local packages: rig-core

rig-neo4j

0.2.4 - 2025-02-10

Other

  • updated the following local packages: rig-core

rig-qdrant

0.1.7 - 2025-02-10

Other

  • updated the following local packages: rig-core

rig-sqlite

0.1.4 - 2025-02-10

Other

  • updated the following local packages: rig-core


This PR was generated with release-plz.

@github-actions github-actions bot force-pushed the release-plz-2025-01-31T16-36-35Z branch 10 times, most recently from 61566cf to fa657a2 Compare February 7, 2025 20:32
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.

1 participant