Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[0.4.0-gamma] Add support for 7.26 #84

Open
wants to merge 7 commits into
base: 0.4.0-gamma
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ endif

TYPES=.mli .cmi .cmti

VERSIONS=_7_8 _7_23
VERSIONS=_7_8 _7_23 _7_26

INSTALL:=$(addprefix profuse_7_8, $(TYPES)) \
$(addprefix profuse_7_23, $(TYPES)) \
$(addprefix profuse_7_26, $(TYPES)) \
$(addprefix profuse_signatures, $(TYPES)) \
$(foreach versioned,$(addprefix $(MOD_NAME), $(VERSIONS)),\
$(addprefix $(versioned), $(TYPES)))\
Expand Down
2 changes: 1 addition & 1 deletion lib/fuse.ml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
*)

module Profuse = Profuse_7_23
module Profuse = Profuse_7_26

module Nodes = Nodes

Expand Down
2 changes: 1 addition & 1 deletion lib/fuse.mli
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

module Profuse = Profuse_7_23
module Profuse = Profuse_7_26

module Nodes = Nodes

Expand Down
7 changes: 7 additions & 0 deletions lib/profuse_.mllib
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ Profuse_types_7_20
Profuse_types_7_21
Profuse_types_7_22
Profuse_types_7_23
Profuse_types_7_24
Profuse_types_7_25
Profuse_types_7_26
Profuse_types_detected_7_8
Profuse_types_detected_7_9
Profuse_types_detected_7_10
Expand All @@ -32,6 +35,10 @@ Profuse_types_detected_7_20
Profuse_types_detected_7_21
Profuse_types_detected_7_22
Profuse_types_detected_7_23
Profuse_types_detected_7_24
Profuse_types_detected_7_25
Profuse_types_detected_7_26
Profuse_signatures
Profuse_7_8
Profuse_7_23
Profuse_7_26
Loading