-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate OCaml projects. Usage: spin COMMAND Available Commands: config Update the current user's configuration ls List the official templates new Generate a new project from a template Useful options: --help Show manual page --v, --verbose Increase verbosity --version Show spin version For a complete documentation, refer to the manual with `spin --help`. Use `spin COMMAND --help` for help on a single command. package.
- Loading branch information
Showing
7 changed files
with
54 additions
and
16 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,9 @@ | ||
# 0.8.1 | ||
|
||
## Changed | ||
|
||
- Split the opam plugin in an `opam-spin` package. | ||
|
||
# 0.8.0 | ||
|
||
## Added | ||
|
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
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,32 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Opam plugin for Spin, the OCaml project generator" | ||
description: "Opam plugin for Spin, the OCaml project generator" | ||
maintainer: ["Thibaut Mattio"] | ||
authors: ["Thibaut Mattio"] | ||
license: "ISC" | ||
homepage: "https://github.com/tmattio/spin" | ||
doc: "https://tmattio.github.io/spin/" | ||
bug-reports: "https://github.com/tmattio/spin/issues" | ||
depends: [ | ||
"ocaml" {>= "4.10.0"} | ||
"dune" {>= "2.7"} | ||
"spin" {= version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/tmattio/spin.git" | ||
flags: plugin |
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 @@ | ||
flags: plugin |
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 was deleted.
Oops, something went wrong.