Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dandavison/delta Loading
base: 0.16.4
Choose a base ref
...
head repository: dandavison/delta Loading
compare: 0.16.5
Choose a head ref
  • 6 commits
  • 10 files changed
  • 2 contributors

Commits on Jun 3, 2023

  1. Configuration menu
    Copy the full SHA
    dda9a87 View commit details
    Browse the repository at this point in the history
  2. Fix typo in publishing build job & restore cross-compilation (#1430)

    * Fix typo in publishing build job
    
    This prevented the cross-compilation targets from using the `cross`
    binary for the compilation.
    
    The script evaluated with `${{ matrix.job.cross }}` to:
    ```
      if [[ "" == "true" ]]; then
        cross build --release --target x86_64-unknown-linux-musl
      else
        cargo build --release --target x86_64-unknown-linux-musl
      fi
    ```
    
    The correct result for `${{ matrix.job.use-cross }}` is:
    ```
      if [[ "true" == "true" ]]; then
        cross build --release --target x86_64-unknown-linux-musl
      else
        cargo build --release --target x86_64-unknown-linux-musl
      fi
    ```
    
    * Restore previously failed cross-compilation targets
    
    - Revert "Delete the remaining failing cross-compilation target"
    
      This reverts commit 2937f32.
    
    - Revert "Delete another failing cross-compilation target"
    
      This reverts commit 4af8adf.
    
    - Revert "Delete i686-unknown-linux-gnu job"
    
      This reverts commit eebdddd.
    
    - Revert "Delete arm-unknown-linux-gnueabihf job"
    
      This reverts commit 9a2fa34.
    nickelc committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    d327bad View commit details
    Browse the repository at this point in the history
  3. Write directly, not by appending to output buffer

    This was a bug when a box decoration was subsequently drawn since the
    decoration enclosed pending content in the output buffer.
    dandavison committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    481d3c1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a28231a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3819e94 View commit details
    Browse the repository at this point in the history
  6. Bump version

    dandavison committed Jun 3, 2023
    Configuration menu
    Copy the full SHA
    03f1569 View commit details
    Browse the repository at this point in the history
Loading