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

DataStructures version #906

Closed
ghost opened this issue Apr 14, 2024 · 1 comment
Closed

DataStructures version #906

ghost opened this issue Apr 14, 2024 · 1 comment

Comments

@ghost
Copy link

ghost commented Apr 14, 2024

I run julia from a clean environment, e.g.
docker run -it julia:1.10
add DataStructures to the environment

(@v1.10) pkg> status
Status `~/.julia/environments/v1.10/Project.toml`
  [864edb3b] DataStructures v0.18.19

It says v0.18.19
I test for a bug that should be fixed

using DataStructures
struct A1 end
struct A2 end
c = CircularBuffer{A1}(10)
try push!(c, A2()); catch end; 
@assert isempty(c)

It fails

The error should be fixed since v0.18.12.
Clone the repo, checkout v0.18.12, there should be a test in tests/test_circular_buffer.jl named "Issue 754", but it's not there? Is the tag wrong?

I download the archive of the same release (0.18.12) from github, it's the same (no test named "Issue 754", what version are these archives?

run a diff between 0.18.12 .. 0.18.15 but it's way too short?

The registry has versions up to 0.18.19, but this repo only has tags up to 0.18.15?

Am I haunted? 👻

@ghost ghost closed this as completed Apr 14, 2024
@ghost
Copy link
Author

ghost commented Apr 14, 2024

it's because of #865 i guess

This issue was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants