# Documenter.jl pages aren't being updated

**URL:** https://discourse.julialang.org/t/documenter-jl-pages-arent-being-updated/119108
**Category:** Package Management
**Tags:** documenter, documenterjl
**Created:** [September 6, 2024, 8:42am UTC](https://discourse.julialang.org/t/documenter-jl-pages-arent-being-updated/119108 "2024-09-06T08:42:17Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![ilkerarslan](https://avatars.discourse-cdn.com/v4/letter/i/e79b87/32.png) [@ilkerarslan](https://discourse.julialang.org/u/ilkerarslan)
#### Post date: [September 6, 2024, 8:42am UTC](https://discourse.julialang.org/t/documenter-jl-pages-arent-being-updated/119108/1 "2024-09-06T08:42:18Z")

</div>

Hi everyone.

I am writing documentation for the package I am developing. After some point the changes I am making aren’t loaded to github pages stable version altough they are reflected in the /dev/ link.

I can see the changes in the following link (/dev):  
[https://ilkerarslan.github.io/NovaML.jl/dev/user\_guide/model\_training/](https://ilkerarslan.github.io/NovaML.jl/dev/user_guide/model_training/)

but not in the following one:  
[https://ilkerarslan.github.io/NovaML.jl/stable/user\_guide/model\_training/](https://ilkerarslan.github.io/NovaML.jl/stable/user_guide/model_training/)

Can anyone tell how should I fix this?

---

<div class="post-metadata">

### Author: ![lmiq](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/lmiq/32/18314_2.png) [@lmiq](https://discourse.julialang.org/u/lmiq)
#### Post date: [September 6, 2024, 9:14am UTC](https://discourse.julialang.org/t/documenter-jl-pages-arent-being-updated/119108/2 "2024-09-06T09:14:48Z")

</div>

You probably need to create a new tag and release: [Publish Docs · JuliaNotes.jl](https://m3g.github.io/JuliaNotes.jl/stable/publish_docs/#Deployment-of-the-docs-of-a-previous-version)

---

<div class="post-metadata">

### Author: ![kellertuer](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/kellertuer/32/220707_2.png) [@kellertuer](https://discourse.julialang.org/u/kellertuer)
#### Post date: [September 6, 2024, 9:31am UTC](https://discourse.julialang.org/t/documenter-jl-pages-arent-being-updated/119108/3 "2024-09-06T09:31:18Z")

</div>

The `stable` version is always reflecting your last registered version, which in your case seems to be the `0.3` you published a few days ago?

the `dev` version is the status of the docs from the last commit on your master branch reflected.

---

<div class="post-metadata">

### Author: ![lmiq](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/lmiq/32/18314_2.png) [@lmiq](https://discourse.julialang.org/u/lmiq)
#### Post date: [September 6, 2024, 10:50am UTC](https://discourse.julialang.org/t/documenter-jl-pages-arent-being-updated/119108/4 "2024-09-06T10:50:44Z")

</div>

You don’t need necessarily to _register_ a new version to update the docs, you need to tag and release a new version with the same version.

---

<div class="post-metadata">

### Author: ![ilkerarslan](https://avatars.discourse-cdn.com/v4/letter/i/e79b87/32.png) [@ilkerarslan](https://discourse.julialang.org/u/ilkerarslan)
#### Post date: [September 6, 2024, 1:09pm UTC](https://discourse.julialang.org/t/documenter-jl-pages-arent-being-updated/119108/5 "2024-09-06T13:09:42Z")

</div>

That worked. Many thanks.
