-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from OCamlPro/z-2020-08-01-use-patches-only
fixes and version 0.9.1
- Loading branch information
Showing
4 changed files
with
29 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
How to release a new version | ||
============================ | ||
|
||
Suppose you want to releave version 0.10.0: | ||
|
||
* edit src/opambinGlobals.ml and change `version` to "0.10.0" | ||
* commit: | ||
``` | ||
git commit -a -m "version 0.10.0" | ||
``` | ||
* push: | ||
``` | ||
git push | ||
``` | ||
* Go to github.com and merge | ||
* Draft a new release: | ||
v0.10.0 | ||
Version 0.10.0 | ||
* Go in opam-bin-repository | ||
./scripts/new-opam-bin.sh 0.10.0 | ||
* Commit and push | ||
git commit -a -m "add opam-bin.0.10.0" | ||
git push | ||
* You may also want to create a new binary archive for this version |
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 @@ | ||
(data_only_dirs test) |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
open EzFile.OP | ||
|
||
let command = "opam-bin" | ||
let version = "0.9.0" | ||
let version = "0.9.1" | ||
let about = | ||
Printf.sprintf "%s %s by OCamlPro SAS <[email protected]>" | ||
command version | ||
|