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

Backports for 0.18 #721

Draft
wants to merge 28 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
7663313
Switch to GitHub Actions for CI (#714)
timholy Dec 15, 2020
f3d15dc
Fix MutableBinaryHeap, same issue as #686
dm3 Jan 18, 2021
ebf1444
bump version
oxinabox Jan 19, 2021
2c18185
CI this branch
oxinabox Jan 19, 2021
08ae3a7
inline a bit to remove an inference trigger
ChrisRackauckas Aug 9, 2021
f2628b7
Merge pull request #747 from ChrisRackauckas/inference
oxinabox Aug 9, 2021
e53a05f
Fixed long-standing bug in balanced_tree.jl that corrupted SortedMult…
StephenVavasis Dec 7, 2021
2a7e849
bump version
oxinabox Dec 8, 2021
39766be
fix syntax for `return_type`, fixes test on 1.8
KristofferC Feb 19, 2022
612d0ef
bump patch
oxinabox May 6, 2022
d0dd2a0
Compat compat
oxinabox May 24, 2022
468234c
fix: check key values, not `get` return for haskey(k, orderedrobindic…
mrufsvold Jun 29, 2023
4bc0db2
bump version
oxinabox Jun 29, 2023
eb136b9
remove type piracy on eltype etc
oxinabox Aug 3, 2023
3776698
bump version
oxinabox Aug 3, 2023
430bec9
remove tests for `sort(::Dict)`
ericphanson Dec 3, 2023
64e2230
Merge pull request #882 from JuliaCollections/eph/backport-rm-sort-pi…
oxinabox Dec 4, 2023
ccd675d
Resize to new size. Fixes #788
dantaras Feb 9, 2022
72af1f6
bump version
Jan 5, 2024
685f7bc
Merge pull request #889 from eulerkochy/release-0.18
eulerkochy Jan 5, 2024
b5ba47d
Backport deque memory fix (#898)
nickrobinson251 Feb 20, 2024
37912cf
Conditional import of Base.isfull
KronosTheLate Feb 6, 2024
5156e74
bump version
oxinabox Mar 5, 2024
2dbfb80
Delete unnecessary methods to fix invalidations
JamesWrigley Apr 12, 2024
91a76c9
Bump version to 0.18.19
JamesWrigley Apr 12, 2024
88efafb
Merge pull request #905 from JamesWrigley/v0.18.19
oxinabox Apr 12, 2024
266216a
mark heapify to inline
oxinabox Apr 18, 2024
45f9985
bump version
oxinabox Apr 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: CI
on:
pull_request:
push:
branches:
- release-0.18
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
50 changes: 0 additions & 50 deletions .travis.yml

This file was deleted.

5 changes: 2 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
name = "DataStructures"
uuid = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
version = "0.18.8"

version = "0.18.16"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"

[compat]
Compat = "3.0.0"
Compat = "3,4"
OrderedCollections = "1.1.0"
julia = "1"

Expand Down
36 changes: 0 additions & 36 deletions appveyor.yml

This file was deleted.

Loading
Loading