22 lines
644 B
Ada
22 lines
644 B
Ada
package Alire.Index.Semantic_Versioning is
|
|
|
|
function Project is
|
|
new Catalogued_Project ("Semantic Versioning in Ada");
|
|
|
|
Repo : constant URL := "https://github.com/alire-project/semantic_versioning.git";
|
|
|
|
V_0_3 : constant Release := Project.Register
|
|
(V ("0.3"),
|
|
Git (Repo, "ebf71f00daba91489238f79819078a37e36be188"));
|
|
|
|
|
|
V_0_2 : constant Release := Project.Register
|
|
(V ("0.2"),
|
|
Git (Repo, "2937c650511ad3c87af64be963eca7eba7aebb68"));
|
|
|
|
V_0_1_2 : constant Release := Project.Register
|
|
(V ("0.1.2"),
|
|
Git (Repo, "09774d80fac62ea3a09d46b22d4807da530387e2"));
|
|
|
|
end Alire.Index.Semantic_Versioning;
|