diff --git a/RELEASING.md b/RELEASING.md index 257c6625a..9e4331df2 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,7 +1,7 @@ ## Checklist for releasing a new version 1. [ ] Update Msys2 installer at https://github.com/msys2/msys2-installer/releases/ -1. [ ] Run local-only tests (`/testsuite/run-dev-sh`) +1. [ ] Run local-only tests (`/testsuite/run-dev.sh`) 1. [ ] Update version in `Alire.Version`. 1. [ ] Update version in `alire.toml`. 1. [ ] Create test release in own fork. diff --git a/alire.toml b/alire.toml index 73465f3e6..7c8f04c46 100644 --- a/alire.toml +++ b/alire.toml @@ -1,7 +1,7 @@ name = "alr" description = "Command-line tool from the Alire project" -version = "2.0" +version = "2.0.1" authors = ["Alejandro R. Mosteo", "Fabien Chouteau", "Pierre-Marie de Rodat"] maintainers = ["alejandro@mosteo.com", "chouteau@adacore.com"] diff --git a/src/alire/alire-version.ads b/src/alire/alire-version.ads index 4ae30c254..85383c43d 100644 --- a/src/alire/alire-version.ads +++ b/src/alire/alire-version.ads @@ -12,7 +12,8 @@ private -- Remember to update Alire.Index branch if needed too - Current_Str : constant String := "2.0"; + Current_Str : constant String := "2.0.1"; + -- 2.0.1: fix `alr install` and minor fixes -- 2.0.0: alr settings refactor and minor fixes -- 2.0.0-rc1: release candidate for 2.0 -- 2.0.0-b1: first public release on the 2.0 branch diff --git a/testsuite/run-dev.sh b/testsuite/run-dev.sh index d3eb7d154..964cd9914 100755 --- a/testsuite/run-dev.sh +++ b/testsuite/run-dev.sh @@ -7,4 +7,13 @@ export ALR_TESTSUITE_ALLOW=1 # So `alr` doesn't raise export ALIRE_TESTSUITE_ENABLE_LOCAL_TESTS=1 # So they're actually run clear + +# Warn if GH_USERNAME is unset +if [ -z "$GH_USERNAME" ]; then + echo "Warning: GH_USERNAME is unset, some tests will be skipped." + echo "Continuing in 3 seconds..." + sleep 3 + echo +fi + ./run.py -M1 "$@"