Skip to content

Commit

Permalink
Update version string.
Browse files Browse the repository at this point in the history
  • Loading branch information
pyjarrett committed Dec 1, 2024
1 parent f2f59f6 commit cb11d1c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion septum.gpr
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ project Septum is
"-c0", -- Don't change comments.
"--no-separate-is",
"--no-separate-loop-then",
"-l2" -- Compact layoud
"-l2" -- Compact layout
);
end Pretty_Printer;

Expand Down
4 changes: 2 additions & 2 deletions src/common/sp.ads
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package SP
with Pure
with Pure
is

Version : constant String := "0.0.7";
Version : constant String := "0.0.8";

end SP;
26 changes: 13 additions & 13 deletions tests/alire.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ executables = ["septum_tests"]

[build-switches]
"*".Compile_Checks = "Warnings"
"*".Debug_Info = "Yes"
"*".Contracts = "Yes"
"*".Runtime_Checks = [
"Development".Debug_Info = "Yes"
"Development".Contracts = "Yes"
"Development".Runtime_Checks = [
"-gnato", # Enable numeric overflow checking;
"-fstack-check", # Stack overflow checking
"-gnatVa" # All validity checks
"-gnatVa", # All validity checks
]
"*".Ada_Version = "Ada2022"
"*".Style_Checks = [
"-gnaty-d", # Disable no DOS line terminators
"-gnatyM120", # Maximum line length
"-gnatyO" # Overriding subprograms explicitly marked as such]
"-gnatyO", # Overriding subprograms explicitly marked as such]
]

[[depends-on]]
Expand All @@ -31,16 +31,16 @@ septum = "~0.0.8"
trendy_test = "~0.0.3"

# Septum deps
[[depends-on]] # Added by alr
dir_iterators = "~0.0.4" # Added by alr
[[depends-on]] # Added by alr
progress_indicators = "~0.0.1" # Added by alr
[[depends-on]] # Added by alr
trendy_terminal = "~0.0.5" # Added by alr
[[depends-on]] # Added by alr
dir_iterators = "~0.0.4" # Added by alr
[[depends-on]] # Added by alr
progress_indicators = "~0.0.1" # Added by alr
[[depends-on]] # Added by alr
trendy_terminal = "~0.0.5" # Added by alr

[[pins]]
septum = { path = ".." }
#trendy_test = { url = "https://github.com/pyjarrett/trendy_test", branch="main" }
#trendy_test = { path='../../trendy_test' } # Added by alr
[[depends-on]] # Added by alr
atomic = "~0.5.0" # Added by alr
[[depends-on]] # Added by alr
atomic = "~0.5.0" # Added by alr

0 comments on commit cb11d1c

Please sign in to comment.