Skip to content

Commit

Permalink
Release 2.0.1 preparations (#1658)
Browse files Browse the repository at this point in the history
  • Loading branch information
mosteo authored Mar 20, 2024
1 parent 191fb50 commit 0424251
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion alire.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
3 changes: 2 additions & 1 deletion src/alire/alire-version.ads
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions testsuite/run-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "$@"

0 comments on commit 0424251

Please # to comment.