-
Notifications
You must be signed in to change notification settings - Fork 7
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
Jack Feser
committed
Jan 21, 2020
1 parent
65907e5
commit 2c6c3fe
Showing
3 changed files
with
11 additions
and
0 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,7 @@ | ||
## 2.1 (2020-01-21) | ||
|
||
Update version of Core and Dune. | ||
|
||
## 2.0 (2019-02-01) | ||
|
||
Initial release. |
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,13 +1,16 @@ | ||
(lang dune 2.0) | ||
(name l2) | ||
(version 2.1) | ||
(source (github jfeser/l2)) | ||
(documentation http://jfeser.github.io/L2/) | ||
(license Apache2.0) | ||
(authors "Jack Feser <[email protected]>") | ||
(maintainers "Jack Feser <[email protected]>") | ||
|
||
(package | ||
(name l2) | ||
(synopsis "Enumerative program synthesizer") | ||
(description "λ² is a tool for synthesizing functional programs from input-output examples.") | ||
(depends | ||
(ocaml (>= 4.08)) | ||
(dune (>= 2)) | ||
|
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,10 +1,14 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
version: "2.1" | ||
synopsis: "Enumerative program synthesizer" | ||
description: | ||
"λ² is a tool for synthesizing functional programs from input-output examples." | ||
maintainer: ["Jack Feser <[email protected]>"] | ||
authors: ["Jack Feser <[email protected]>"] | ||
license: "Apache2.0" | ||
homepage: "https://github.com/jfeser/l2" | ||
doc: "http://jfeser.github.io/L2/" | ||
bug-reports: "https://github.com/jfeser/l2/issues" | ||
depends: [ | ||
"ocaml" {>= "4.08"} | ||
|