-
Notifications
You must be signed in to change notification settings - Fork 43
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
Fix #148 #149
Merged
Merged
Fix #148 #149
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Use the `~` version specifier, which only allows changes in the last digit of the version. Additionally, force use of version `4.1.1`+, as `4.1.0` incorrectly claimed the library version in the c code
Dr-Emann
force-pushed
the
push-utumwmomlylu
branch
from
August 5, 2024 23:50
9074283
to
64c99e7
Compare
renovate bot
referenced
this pull request
in spiraldb/vortex
Aug 6, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [croaring](https://togithub.com/RoaringBitmap/croaring-rs) | workspace.dependencies | patch | `2.0.2` -> `2.0.3` | --- ### Release Notes <details> <summary>RoaringBitmap/croaring-rs (croaring)</summary> ### [`v2.0.3`](https://togithub.com/RoaringBitmap/croaring-rs/releases/tag/v2.0.3) [Compare Source](https://togithub.com/RoaringBitmap/croaring-rs/compare/v2.0.2...v2.0.3) #### What's Changed - Use new croaring funcs by [@​Dr-Emann](https://togithub.com/Dr-Emann) in [https://github.com/RoaringBitmap/croaring-rs/pull/141](https://togithub.com/RoaringBitmap/croaring-rs/pull/141) - Bump cc from 1.0.104 to 1.1.5 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/RoaringBitmap/croaring-rs/pull/144](https://togithub.com/RoaringBitmap/croaring-rs/pull/144) - Bump roaring from 0.10.5 to 0.10.6 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/RoaringBitmap/croaring-rs/pull/142](https://togithub.com/RoaringBitmap/croaring-rs/pull/142) - Bump to croaring 4.1.1 by [@​Dr-Emann](https://togithub.com/Dr-Emann) in [https://github.com/RoaringBitmap/croaring-rs/pull/147](https://togithub.com/RoaringBitmap/croaring-rs/pull/147) - Fix [#​148](https://togithub.com/RoaringBitmap/croaring-rs/issues/148) by [@​Dr-Emann](https://togithub.com/Dr-Emann) in [https://github.com/RoaringBitmap/croaring-rs/pull/149](https://togithub.com/RoaringBitmap/croaring-rs/pull/149) - missed update to Cargo.lock for croaring 2.0.3 by [@​Dr-Emann](https://togithub.com/Dr-Emann) in [https://github.com/RoaringBitmap/croaring-rs/pull/150](https://togithub.com/RoaringBitmap/croaring-rs/pull/150) **Full Changelog**: RoaringBitmap/croaring-rs@v2.0.2...v2.0.3 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/spiraldb/vortex). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Closed
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
We're getting hit by: tokio-rs/tokio#4490 -
-Zdirect-minimal-versions
doesn't affect path dependencies.Instead, use cargo-minimal-versions which handles this and some other edge cases with checking against minimal versions.
Currently expecting this to fail because of #148. Once we confirm this would catch such a problem from happening again, this PR will be updated to include a fix.