-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
25 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
v1.0.2 | ||
-------------------------- | ||
Upgrade jbuilder to dune | ||
|
||
|
||
v1.0.1 | ||
-------------------------- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
(lang dune 1.0) | ||
(name wtf8) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
(library | ||
(name wtf8) | ||
(public_name wtf8)) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
opam-version: "1.2" | ||
opam-version: "2.0" | ||
maintainer: "Marshall Roch <mroch@fb.com>" | ||
authors: ["Marshall Roch <mroch@fb.com>"] | ||
authors: "Marshall Roch <mroch@fb.com>" | ||
license: "MIT" | ||
homepage: "https://github.com/flowtype/ocaml-wtf8" | ||
doc: "https://github.com/flowtype/ocaml-wtf8" | ||
license: "MIT" | ||
dev-repo: "https://github.com/flowtype/ocaml-wtf8.git" | ||
bug-reports: "https://github.com/flowtype/ocaml-wtf8/issues" | ||
tags: [] | ||
available: [ ocaml-version >= "4.01.0"] | ||
depends: | ||
[ | ||
"jbuilder" {build & >= "1.0+beta7"} | ||
depends: [ | ||
"ocaml" {>= "4.01.0"} | ||
"dune" {build & >= "1.0"} | ||
] | ||
build: [ | ||
["dune" "build" "-p" name "-j" jobs] | ||
["dune" "runtest" "-p" name "-j" jobs] {with-test} | ||
] | ||
depopts: [] | ||
build: [["jbuilder" "build" "-p" name "-j" jobs]] | ||
build-test: [["jbuilder" "runtest" "-p" name "-j" jobs]] | ||
dev-repo: "git+https://github.com/flowtype/ocaml-wtf8.git" | ||
synopsis: "Encoder and decoder for WTF-8" | ||
description: """ | ||
WTF-8 is a superset of UTF-8 that allows unpaired surrogates. | ||
""" |