# New package version not appearing on Juliahub

**URL:** https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989
**Category:** Package Management
**Tags:** package, registry, versioning
**Created:** [July 29, 2022, 4:43pm UTC](https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989 "2022-07-29T16:43:22Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![satyabrata\_pal](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/satyabrata_pal/32/9035_2.png) [@satyabrata\_pal](https://discourse.julialang.org/u/satyabrata_pal)
#### Post date: [July 29, 2022, 4:43pm UTC](https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989/1 "2022-07-29T16:43:22Z")

</div>

I had recently registered a new version of my package “Nbdev.jl” - source -[GitHub - sapal6/Nbdev.jl: Create Julia packages from Notebooks](https://github.com/sapal6/Nbdev.jl)

When I search my package on juliahub, i can see the package’s name and new version appearing in the search results but when I click on my package name then it displays the attached error.

 ![image](https://global.discourse-cdn.com/julialang/original/3X/e/7/e7ffdf7860475f35e1612794641757fbb9362ed0.png)

I also tried to add the package in one of my environment but then the following error occurred -

 ![image](https://global.discourse-cdn.com/julialang/original/3X/f/c/fc08e1e3e1738d8305bf4fe7045b5ba4b0e8f3e1.png)

I can see an automated comment on the registrator pull request -

 ![image](https://global.discourse-cdn.com/julialang/original/3X/4/2/4255922996ca1afa48efa48594a4e07297ce46a3.png)

This is the [link](https://github.com/JuliaRegistries/General/pull/65255) to the pull request. I am not sure that would it take some time for my package to appear in Juliahub or is there some other issue.

---

<div class="post-metadata">

### Author: ![mbauman](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mbauman/32/31082_2.png) [@mbauman](https://discourse.julialang.org/u/mbauman)
#### Post date: [July 29, 2022, 5:30pm UTC](https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989/2 "2022-07-29T17:30:56Z")

</div>

Yes, the second portion of that 404 message is the case here: JuliaHub hasn’t yet built the documentation and info pages for your package. It is a regularly recurring task and should get to it soon.

---

<div class="post-metadata">

### Author: ![satyabrata\_pal](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/satyabrata_pal/32/9035_2.png) [@satyabrata\_pal](https://discourse.julialang.org/u/satyabrata_pal)
#### Post date: [July 29, 2022, 5:44pm UTC](https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989/3 "2022-07-29T17:44:27Z")

</div>

This explains the lack of information/documentation on the package page but does this also explain the second issue i.e. when I try to “add” my package in the pkg terminal, it displays error. Sorry but this is only my second time since publishing package to julia, so I am having a few questions here.

---

<div class="post-metadata">

### Author: ![mbauman](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mbauman/32/31082_2.png) [@mbauman](https://discourse.julialang.org/u/mbauman)
#### Post date: [July 29, 2022, 6:06pm UTC](https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989/4 "2022-07-29T18:06:22Z")

</div>

Ah, I missed that second portion — that’s due to this warning:

```julia
Warning: Some registries failed to update:
    - `C:\Users\family\.julia\registries\General` — registry dirty
@ Pkg.Types C:\buildbot\worker\package_win64\build\usr\share\julia\stdlib\v1.6\Pkg\src\Types.jl:1246

```

Probably the easiest and quickest fix for this is to delete (or move) the `C:\Users\family\.julia\registries\General` folder. Somehow you have modified your registry locally and now Julia is refusing to update it.

---

<div class="post-metadata">

### Author: ![satyabrata\_pal](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/satyabrata_pal/32/9035_2.png) [@satyabrata\_pal](https://discourse.julialang.org/u/satyabrata_pal)
#### Post date: [July 29, 2022, 6:19pm UTC](https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989/5 "2022-07-29T18:19:27Z")

</div>

Ah I myself didn’t notice this. I think this might be because in the same registry I had installed the Dev package locally.

I will clean it as suggested by you and will post an update.

---

<div class="post-metadata">

### Author: ![mkitti](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/mkitti/32/12459_2.png) [@mkitti](https://discourse.julialang.org/u/mkitti)
#### Post date: [July 29, 2022, 7:15pm UTC](https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989/6 "2022-07-29T19:15:48Z")

</div>

It usually is not necessary to modify the registry. Consider using `Pkg.develop` in the future. You can provide local paths or git URLs directly.

---

<div class="post-metadata">

### Author: ![satyabrata\_pal](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/satyabrata_pal/32/9035_2.png) [@satyabrata\_pal](https://discourse.julialang.org/u/satyabrata_pal)
#### Post date: [July 30, 2022, 7:03am UTC](https://discourse.julialang.org/t/new-package-version-not-appearing-on-juliahub/84989/7 "2022-07-30T07:03:19Z")

</div>

It worked as you suggested. Now installing the package using add works.
