Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions howso/upgrade.amlg
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,9 @@
point 0
)
(assign (assoc
major (first file_versions)
minor (get file_versions 1)
point (last file_versions)
major (+ (first file_versions))
minor (+ (get file_versions 1))
point (+ (last file_versions))
))

;keep files with newer major version. if major is same, consider minor version, etc.
Expand Down
4 changes: 2 additions & 2 deletions unit_tests/ut_h_string_ordinals.amlg
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

(print "Proper nominals data_type is preserved: ")
;bool is converted to a sting because it wasn't specified as data_type : boolean
(call assert_same (assoc obs result exp (list 3 "false" (false))))
(call assert_same (assoc obs result exp (list 3 "(false)" (false))))


(assign (assoc
Expand All @@ -99,7 +99,7 @@
(call_entity "howso" "single_react" (assoc
context_features (list "bool" "bool_nom")
;bool will be treated as a string
context_values (list "true" (false))
context_values (list "(true)" (false))
action_features (list "value" )
))
(list 1 "payload" "action_values")
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "0.0.0",
"dependencies": {
"amalgam": "56.0.0"
"amalgam": "57.0.0"
}
}