Thread overview
code.dlang.org package isn't automatically bumped when I push a new version tag on github
Jun 26, 2017
Nordlöw
Jun 26, 2017
Seb
Jun 26, 2017
Nordlöw
Jun 26, 2017
Nordlöw
Jun 26, 2017
Basile B.
Jun 26, 2017
Nordlöw
June 26, 2017
I've made an update to version 0.1 at https://github.com/nordlow/gmp-d/tree/v0.1.

But the version on http://code.dlang.org/packages/gmp-d isn't bumped to version 0.1 and I can't find a way to change it.

What to do?
June 26, 2017
On Monday, 26 June 2017 at 07:51:16 UTC, Nordlöw wrote:
> I've made an update to version 0.1 at https://github.com/nordlow/gmp-d/tree/v0.1.
>
> But the version on http://code.dlang.org/packages/gmp-d isn't bumped to version 0.1 and I can't find a way to change it.
>
> What to do?

The crawler runs every hour. Though you can login and trigger a manual refresh.
June 26, 2017
On Monday, 26 June 2017 at 08:07:56 UTC, Seb wrote:
> The crawler runs every hour. Though you can login and trigger a manual refresh.

I bumped a couple of days ago so that can't be it. How do I trigger a manual refresh?
June 26, 2017
On Monday, 26 June 2017 at 08:07:56 UTC, Seb wrote:
> The crawler runs every hour. Though you can login and trigger a manual refresh.

"Show all versions" doesn't show the latest tag version `v1.0`.
June 26, 2017
On Monday, 26 June 2017 at 09:01:01 UTC, Nordlöw wrote:
> On Monday, 26 June 2017 at 08:07:56 UTC, Seb wrote:
>> The crawler runs every hour. Though you can login and trigger a manual refresh.
>
> "Show all versions" doesn't show the latest tag version `v1.0`.

Don't worry, it's just your tag that's malformed;

"v1.0" while it should be "v1.0.0"

so... git tag -d v1.0 and add v1.0.0 this time
June 26, 2017
On Monday, 26 June 2017 at 09:37:11 UTC, Basile B. wrote:
> Don't worry, it's just your tag that's malformed;
>
> "v1.0" while it should be "v1.0.0"
>
> so... git tag -d v1.0 and add v1.0.0 this time

Thanks.