-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kakadu <[email protected]>
- Loading branch information
Showing
6 changed files
with
41 additions
and
34 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
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,6 @@ | ||
## 0.2.0 (2021-03-04) | ||
|
||
### Changed | ||
|
||
- Upgrade for OCaml 4.10 | ||
- Upgrade for ppxlib 0.22 |
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,7 +1,7 @@ | ||
version: "0.1.0" | ||
opam-version: "2.0" | ||
name: "OCanren-ppx" | ||
synopsis: "Relational programming library in miniKanren manner. PPX extension" | ||
|
||
version: "0.2.0" | ||
description: "Relational programming library in miniKanren manner. PPX extension" | ||
maintainer: "Dmitrii Kosarev [email protected]" | ||
|
||
authors: [ | ||
|
@@ -35,4 +35,3 @@ dev-repo: "git+https://github.com/JetBrains-Research/OCanren.git" | |
url { | ||
src: "git+https://github.com/JetBrains-Research/OCanren" | ||
} | ||
|
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,8 +1,8 @@ | ||
opam-version: "2.0" | ||
version: "0.1.0" | ||
version: "0.2.0" | ||
|
||
synopsis: "Relational programming library in miniKanren manner" | ||
maintainer: "Dmitrii Kosarev kakadu[email protected]" | ||
description: "Relational programming library in miniKanren manner" | ||
maintainer: "Dmitrii Kosarev kakadu@pm.me" | ||
homepage: "https://github.com/JetBrains-Research/OCanren" | ||
bug-reports: "https://github.com/JetBrains-Research/OCanren/issues" | ||
|
||
|
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
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,27 +1,29 @@ | ||
(executable | ||
(public_name pp_fresh) | ||
(package OCanren-ppx) | ||
(libraries ppx_fresh) | ||
(modules pp_fresh) | ||
) | ||
(public_name pp_fresh) | ||
(package OCanren-ppx) | ||
(libraries ppx_fresh) | ||
(modules pp_fresh)) | ||
|
||
(executable | ||
(public_name pp_repr) | ||
(package OCanren-ppx) | ||
(libraries ppx_repr) | ||
(modules pp_repr) | ||
) | ||
(public_name pp_repr) | ||
(package OCanren-ppx) | ||
(libraries ppx_repr) | ||
(modules pp_repr)) | ||
|
||
(executable | ||
(public_name pp_distrib) | ||
(package OCanren-ppx) | ||
(libraries ppx_distrib) | ||
(modules pp_distrib) | ||
) | ||
(public_name pp_distrib) | ||
(package OCanren-ppx) | ||
(libraries ppx_distrib) | ||
(modules pp_distrib)) | ||
|
||
(executable | ||
(public_name pp_noinjected) | ||
(package OCanren-ppx) | ||
(libraries ppx_noinjected) | ||
(modules pp_noinjected) | ||
) | ||
(public_name pp_noinjected) | ||
(package OCanren-ppx) | ||
(libraries ppx_noinjected) | ||
(modules pp_noinjected)) | ||
|
||
(executable | ||
(public_name pp_ocanren_all) | ||
(package OCanren-ppx) | ||
(libraries ppx_repr ppx_fresh) | ||
(modules pp_ocanren_all)) |