File: get_latest_release.sh

package info (click to toggle)
python-librosa 0.11.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 166,732 kB
  • sloc: python: 21,731; makefile: 141; sh: 2
file content (7 lines) | stat: -rwxr-xr-x 332 bytes parent folder | download
1
2
3
4
5
6
7
#!/bin/sh
# CREATED:2023-06-02 12:31:15 by Brian McFee <brian.mcfee@nyu.edu>
#   A shell script to quickly pull the most recent proper release tag
#   This is used by the multi-version documentation build to automatically
#   infer which doc site to consider "latest"

git tag -l --sort=creatordate |egrep -v "rc|pre|post" |tail -1