16

For bitcoin, the release page:
https://github.com/bitcoin/bitcoin/releases
I can get github release rss seed by append ".atom" on it
https://github.com/bitcoin/bitcoin/releases.atom
But this will include pre release tags.
How can I get latest release tag only?

DinoStray
  • 696
  • 1
  • 6
  • 20

3 Answers3

10

Pre-releases are listed in the releases.atom feed, but they are not marked as pre-releases (no way to separate a pre-release from a final release as far as I can tell).

This information is instead available from the GitHub API.

Isaiah Norton
  • 4,205
  • 1
  • 24
  • 38
0

you'll have to resort to the API.

unbelievable that such an essential feature is missing from the Atom feeds

user1259710
  • 868
  • 2
  • 9
  • 12
0

May I suggest lastversion?

The lastversion utility is actually capable of detecting pre-releases from GitHub atom feeds alone, by looking at beta version identifiers in the tags.

It does use API as well for attempting to try returning more data from a release.

Danila Vershinin
  • 8,725
  • 2
  • 29
  • 35