-
Notifications
You must be signed in to change notification settings - Fork 254
Backports for 0.18 #721
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
Draft
oxinabox
wants to merge
42
commits into
master
Choose a base branch
from
release-0.18
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Backports for 0.18 #721
Changes from 3 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
7663313
Switch to GitHub Actions for CI (#714)
timholy f3d15dc
Fix MutableBinaryHeap, same issue as #686
ebf1444
bump version
oxinabox 2c18185
CI this branch
oxinabox 08ae3a7
inline a bit to remove an inference trigger
ChrisRackauckas f2628b7
Merge pull request #747 from ChrisRackauckas/inference
oxinabox e53a05f
Fixed long-standing bug in balanced_tree.jl that corrupted SortedMult…
StephenVavasis 2a7e849
bump version
oxinabox 39766be
fix syntax for `return_type`, fixes test on 1.8
KristofferC 612d0ef
bump patch
oxinabox d0dd2a0
Compat compat
oxinabox 468234c
fix: check key values, not `get` return for haskey(k, orderedrobindic…
mrufsvold 4bc0db2
bump version
oxinabox eb136b9
remove type piracy on eltype etc
oxinabox 3776698
bump version
oxinabox 430bec9
remove tests for `sort(::Dict)`
ericphanson 64e2230
Merge pull request #882 from JuliaCollections/eph/backport-rm-sort-pi…
oxinabox ccd675d
Resize to new size. Fixes #788
dantaras 72af1f6
bump version
685f7bc
Merge pull request #889 from eulerkochy/release-0.18
eulerkochy b5ba47d
Backport deque memory fix (#898)
nickrobinson251 37912cf
Conditional import of Base.isfull
KronosTheLate 5156e74
bump version
oxinabox 2dbfb80
Delete unnecessary methods to fix invalidations
JamesWrigley 91a76c9
Bump version to 0.18.19
JamesWrigley 88efafb
Merge pull request #905 from JamesWrigley/v0.18.19
oxinabox 266216a
mark heapify to inline
oxinabox 45f9985
bump version
oxinabox d81186f
Fix dynamic dispatch in Deque
Mellich-2 caa1bd0
Merge pull request #920 from Mellich-2/fix-dynamic-dispatch-popfirst
oxinabox f95d795
Update CI for release-0.18 branch (#925)
fingolfin c971189
CI: fix codecov integration, cleanup tagbot
fingolfin a21121f
CI: use julia-actions/cache
fingolfin 15f62da
CI: limit concurrency for PRs
fingolfin e8ce846
CI: don't force arch unless needed
fingolfin 8576615
CI: workaround TagBot issues
fingolfin 8851202
Nicer _unsetindex! fix
fingolfin b5550c9
Version 0.18.21
fingolfin 6682b5a
Switch to Documenter 1.x
fingolfin 6b3b386
CI: add Documenter workflow to release-0.18 branch
fingolfin 6259876
CI: tweak Documenter workflow
fingolfin 6691373
Version 0.18.22
fingolfin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: CI | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
tags: '*' | ||
jobs: | ||
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '1.0' | ||
- '1' | ||
# - 'nightly' | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
- windows-latest | ||
arch: | ||
- x64 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- uses: actions/cache@v1 | ||
env: | ||
cache-name: cache-artifacts | ||
with: | ||
path: ~/.julia/artifacts | ||
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | ||
restore-keys: | | ||
${{ runner.os }}-test-${{ env.cache-name }}- | ||
${{ runner.os }}-test- | ||
${{ runner.os }}- | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 | ||
- uses: julia-actions/julia-processcoverage@v1 | ||
- uses: codecov/codecov-action@v1 | ||
with: | ||
file: lcov.info |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.