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

Add Ranges::from_iter #34

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open

Add Ranges::from_iter #34

wants to merge 9 commits into from

Commits on Oct 29, 2024

  1. Configuration menu
    Copy the full SHA
    ec165db View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b977176 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    85f4c47 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    85405b8 View commit details
    Browse the repository at this point in the history
  5. Fix-ups to tag generating action (#3)

    * Use new GitHub output syntax
    
    * Fix tag message
    zanieb authored and konstin committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    4c60108 View commit details
    Browse the repository at this point in the history
  6. Merge external custom reasons

    konstin committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    13a9870 View commit details
    Browse the repository at this point in the history
  7. Add State::add_incompatibility_from_dependencies (#27)

    This wrapper avoids accessing the `incompatibility_store` directly in uv
    code.
    
    Before:
    
    ```rust
    let dep_incompats = self.pubgrub.add_version(
        package.clone(),
        version.clone(),
        dependencies,
    );
    self.pubgrub.partial_solution.add_version(
        package.clone(),
        version.clone(),
        dep_incompats,
        &self.pubgrub.incompatibility_store,
    );
    ```
    
    After:
    
    ```rust
    self.pubgrub.add_incompatibility_from_dependencies(package.clone(), version.clone(), dependencies);
    ```
    
    `add_incompatibility_from_dependencies` is one of the main methods for
    the custom interface to pubgrub.
    konstin committed Oct 29, 2024
    Configuration menu
    Copy the full SHA
    0196034 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    95e1390 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Add Ranges::from_iter

    konstin committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    30502ce View commit details
    Browse the repository at this point in the history