mirror of
https://github.com/c-cube/iter.git
synced 2025-12-10 13:13:57 -05:00
prepare for 0.5.5
This commit is contained in:
parent
55e70d1950
commit
b74312090d
4 changed files with 14 additions and 8 deletions
|
|
@ -90,10 +90,4 @@
|
||||||
- `zip`, `unzip` and `zip_i` to convert between `t` and `t2`
|
- `zip`, `unzip` and `zip_i` to convert between `t` and `t2`
|
||||||
- added `scan` combinator
|
- added `scan` combinator
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
note: git log --no-merges --pretty=%s previous_version..HEAD
|
|
||||||
||||||| merged common ancestors
|
|
||||||
note: git log --no-merges previous_version..HEAD --pretty=%s
|
|
||||||
=======
|
|
||||||
note: `git log --no-merges previous_version..HEAD --pretty=%s`
|
note: `git log --no-merges previous_version..HEAD --pretty=%s`
|
||||||
>>>>>>> master
|
|
||||||
|
|
|
||||||
12
Makefile
12
Makefile
|
|
@ -69,6 +69,18 @@ update_next_tag:
|
||||||
NAME_VERSION := sequence.$(VERSION)
|
NAME_VERSION := sequence.$(VERSION)
|
||||||
URL := https://github.com/c-cube/sequence/archive/$(VERSION).tar.gz
|
URL := https://github.com/c-cube/sequence/archive/$(VERSION).tar.gz
|
||||||
|
|
||||||
|
release:
|
||||||
|
git tag -a $(VERSION) -m "Version $(VERSION)."
|
||||||
|
git push origin $(VERSION)
|
||||||
|
opam publish prepare $(NAME_VERSION) $(URL)
|
||||||
|
cp descr $(NAME_VERSION)
|
||||||
|
echo "submit?"
|
||||||
|
@read
|
||||||
|
opam publish submit $(NAME_VERSION)
|
||||||
|
|
||||||
|
NAME_VERSION := sequence.$(VERSION)
|
||||||
|
URL := https://github.com/c-cube/sequence/archive/$(VERSION).tar.gz
|
||||||
|
|
||||||
release:
|
release:
|
||||||
git tag -a $(VERSION) -m "Version $(VERSION)."
|
git tag -a $(VERSION) -m "Version $(VERSION)."
|
||||||
git push origin $(VERSION)
|
git push origin $(VERSION)
|
||||||
|
|
|
||||||
|
|
@ -275,7 +275,7 @@ val take_while : ('a -> bool) -> 'a t -> 'a t
|
||||||
val fold_while : ('a -> 'b -> 'a * [`Stop | `Continue]) -> 'a -> 'b t -> 'a
|
val fold_while : ('a -> 'b -> 'a * [`Stop | `Continue]) -> 'a -> 'b t -> 'a
|
||||||
(** Folds over elements of the sequence, stopping early if the accumulator
|
(** Folds over elements of the sequence, stopping early if the accumulator
|
||||||
returns [('a, `Stop)]
|
returns [('a, `Stop)]
|
||||||
@since NEXT_RELEASE *)
|
@since *)
|
||||||
|
|
||||||
val drop : int -> 'a t -> 'a t
|
val drop : int -> 'a t -> 'a t
|
||||||
(** Drop the [n] first elements of the sequence. Lazy. *)
|
(** Drop the [n] first elements of the sequence. Lazy. *)
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
Version of {!Sequence} with labels
|
Version of {!Sequence} with labels
|
||||||
|
|
||||||
@since NEXT_RELEASE *)
|
@since *)
|
||||||
|
|
||||||
type +'a t = ('a -> unit) -> unit
|
type +'a t = ('a -> unit) -> unit
|
||||||
(** A sequence of values of type ['a]. If you give it a function ['a -> unit]
|
(** A sequence of values of type ['a]. If you give it a function ['a -> unit]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue