# JLD.jl stuck on an old version

**URL:** https://discourse.julialang.org/t/jld-jl-stuck-on-an-old-version/2137
**Category:** General Usage
**Tags:** package
**Created:** [February 16, 2017, 4:27pm UTC](https://discourse.julialang.org/t/jld-jl-stuck-on-an-old-version/2137 "2017-02-16T16:27:47Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![crbinz](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/crbinz/32/1919_2.png) [@crbinz](https://discourse.julialang.org/u/crbinz)
#### Post date: [February 16, 2017, 4:27pm UTC](https://discourse.julialang.org/t/jld-jl-stuck-on-an-old-version/2137/1 "2017-02-16T16:27:48Z")

</div>

I’m using julia v0.5, and while precompiling one of my packages I ran into a JLD.jl issue – one that seems to have been fixed months ago. I checked the installed version, and it was only v0.5.5 (the current latest version is v0.6.9). I tried `Pkg.free`, then removing and re-adding, but it kept installing v0.5.5. (Interestingly, `Pkg.free` gives me the message: `INFO: Downgrading JLD: v0.6.9 => v0.5.5`.)

I tried `grep "JLD" ~/.julia/v0.5/*/REQUIRE`, but didn’t find any restrictive requirements in my installed packages. It does let me `Pkg.pin("JLD",v"0.6.9")`, and it upgrades several packages in the process. Keeping it pinned doesn’t really seem tenable to me, so can someone help me understand what’s going on? Thanks.

---

<div class="post-metadata">

### Author: ![tkelman](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tkelman/32/692_2.png) [@tkelman](https://discourse.julialang.org/u/tkelman)
#### Post date: [February 16, 2017, 6:58pm UTC](https://discourse.julialang.org/t/jld-jl-stuck-on-an-old-version/2137/2 "2017-02-16T18:58:02Z")

</div>

You’ll need to post the output of `Pkg.status()`

---

<div class="post-metadata">

### Author: ![crbinz](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/crbinz/32/1919_2.png) [@crbinz](https://discourse.julialang.org/u/crbinz)
#### Post date: [February 16, 2017, 7:53pm UTC](https://discourse.julialang.org/t/jld-jl-stuck-on-an-old-version/2137/3 "2017-02-16T19:53:09Z")

</div>

[Here it is as a gist](https://gist.github.com/crbinz/7fe5e7ffae8d37060ddc133be36343ea)

---

<div class="post-metadata">

### Author: ![tkelman](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tkelman/32/692_2.png) [@tkelman](https://discourse.julialang.org/u/tkelman)
#### Post date: [February 16, 2017, 8:33pm UTC](https://discourse.julialang.org/t/jld-jl-stuck-on-an-old-version/2137/4 "2017-02-16T20:33:05Z")

</div>

Aside from some unregistered packages there which would use the REQUIRE files that you looked at, doesn’t look like anything funny there.

The difference between JLD 0.5.5 and later versions is that 0.5.5 was the last version to _not_ require FileIO. You have FileIO installed for other packages anyway, but the resolver is doing something funny there to try and avoid additional dependencies. I think this is the bug that [https://github.com/JuliaLang/julia/pull/20319](https://github.com/JuliaLang/julia/pull/20319) fixed.
