-
Notifications
You must be signed in to change notification settings - Fork 1
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 #8 from cryptosense/prepare-release
Prepare release 1.0.0
- Loading branch information
Showing
5 changed files
with
28 additions
and
12 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,11 +1,21 @@ | ||
# Change Log | ||
# Changelog | ||
|
||
## 0.1.1 | ||
All notable changes to this project will be documented in this file. | ||
|
||
* Use Dune instead of jbuilder. | ||
* Upgrade to Opam 2.0. | ||
* Run tests in CI. | ||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this | ||
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## 0.1.0 | ||
## 1.0.0 - 2023-02-24 | ||
|
||
- Fix dependency on OUnit: `oUnit` -> `ounit2`. | ||
- Require OCaml >= 4.07. | ||
|
||
## 0.1.1 - 2020-02-07 | ||
|
||
- Use Dune instead of jbuilder. | ||
- Upgrade to Opam 2.0. | ||
- Run tests in CI. | ||
|
||
## 0.1.0 - 2018-03-16 | ||
|
||
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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ maintainer: ["Cryptosense <[email protected]>"] | |
authors: ["Cryptosense <[email protected]>"] | ||
homepage: "https://github.com/cryptosense/ocaml-mock" | ||
bug-reports: "https://github.com/cryptosense/ocaml-mock/issues" | ||
license: "BSD-2" | ||
license: "BSD-2-Clause" | ||
dev-repo: "git+https://github.com/cryptosense/ocaml-mock.git" | ||
doc: "https://cryptosense.github.io/ocaml-mock/doc" | ||
build: [ | ||
|
@@ -16,7 +16,7 @@ depends: [ | |
"dune" | ||
"mock" | ||
"ocaml" {>= "4.07.0"} | ||
"ounit" | ||
"ounit2" | ||
"ppx_deriving" {with-test} | ||
] | ||
synopsis: "OUnit wrapper for OCaml mock" |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ maintainer: ["Cryptosense <[email protected]>"] | |
authors: ["Cryptosense <[email protected]>"] | ||
homepage: "https://github.com/cryptosense/ocaml-mock" | ||
bug-reports: "https://github.com/cryptosense/ocaml-mock/issues" | ||
license: "BSD-2" | ||
license: "BSD-2-Clause" | ||
dev-repo: "git+https://github.com/cryptosense/ocaml-mock.git" | ||
doc: "https://cryptosense.github.io/ocaml-mock/doc" | ||
build: [ | ||
|
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 @@ | ||
(test | ||
(name test_suite) | ||
(libraries | ||
oUnit | ||
ounit2 | ||
mock | ||
mock-ounit | ||
) | ||
|