prepare for 1.3

This commit is contained in:
Simon Cruanes 2021-11-19 10:15:24 -05:00
parent 40aa539f67
commit 2eae2170b5
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 10 additions and 5 deletions

View file

@ -1,4 +1,9 @@
# 1.3
- use `inline` annotations
- prepare for newer mdx (for tests)
# 1.2.1 # 1.2.1
- fix: use `Stdlib` instead of `Pervasives` - fix: use `Stdlib` instead of `Pervasives`

View file

@ -1,14 +1,14 @@
opam-version: "2.0" opam-version: "2.0"
name: "iter" name: "iter"
version: "1.2.1" version: "1.3"
authors: ["Simon Cruanes" "Gabriel Radanne"] authors: ["Simon Cruanes" "Gabriel Radanne"]
maintainer: "simon.cruanes.2007@m4x.org" maintainer: "simon.cruanes.2007@m4x.org"
license: "BSD-2-clauses" license: "BSD-2-clause"
synopsis: "Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations" synopsis: "Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations"
build: [ build: [
["dune" "build" "@install" "-p" name "-j" jobs] ["dune" "build" "@install" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name] {with-doc} ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc}
["dune" "runtest" "-p" name] {with-test} ["dune" "runtest" "-p" name "-j" jobs] {with-test}
] ]
depends: [ depends: [
"base-bytes" "base-bytes"
@ -26,6 +26,6 @@ homepage: "https://github.com/c-cube/iter/"
depopts: [ depopts: [
"base-bigarray" "base-bigarray"
] ]
doc: "https://c-cube.github.io/iter/doc/1.2" doc: "https://c-cube.github.io/iter/doc/"
bug-reports: "https://github.com/c-cube/iter/issues" bug-reports: "https://github.com/c-cube/iter/issues"
dev-repo: "git+https://github.com/c-cube/iter.git" dev-repo: "git+https://github.com/c-cube/iter.git"