Skip to content

Commit

Permalink
add 0.2.0 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaninja committed Sep 10, 2023
1 parent 3dc49ec commit 8fc2e6e
Showing 1 changed file with 39 additions and 30 deletions.
69 changes: 39 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# rust2fun (pronounced: rʌstafʌn)

[![Crates.io](https://img.shields.io/crates/v/rust2fun.svg)](https://crates.io/crates/rust2fun)
[![docs.rs](https://img.shields.io/docsrs/rust2fun)](https://docs.rs/rust2fun/0.1.0/rust2fun/)
[![docs.rs](https://img.shields.io/docsrs/rust2fun)](https://docs.rs/rust2fun/0.2.0/rust2fun/)
![build](https://github.com/chapiteau-team/rust2fun/actions/workflows/rust.yml/badge.svg)

A library for functional programming in Rust.
Expand Down Expand Up @@ -31,45 +31,45 @@ use rust2fun::prelude::*;

### Combinators:

- function composition (with [compose](https://docs.rs/rust2fun/0.1.0/rust2fun/macro.compose.html) macro)
- pipelines (with [pipe](https://docs.rs/rust2fun/0.1.0/rust2fun/macro.pipe.html) macro)
- function composition (with [compose](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.compose.html) macro)
- pipelines (with [pipe](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.pipe.html) macro)
- currying
- [curry2](https://docs.rs/rust2fun/0.1.0/rust2fun/macro.curry2.html) macro
- [curry3](https://docs.rs/rust2fun/0.1.0/rust2fun/macro.curry3.html) macro
- [curry2](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.curry2.html) macro
- [curry3](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.curry3.html) macro
- etc
- argument flipping (with [flip](https://docs.rs/rust2fun/0.1.0/rust2fun/macro.flip.html) macro)
- argument flipping (with [flip](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.flip.html) macro)
- constant functions
- [constant](https://docs.rs/rust2fun/0.1.0/rust2fun/macro.constant.html) macro
- [constant1](https://docs.rs/rust2fun/0.1.0/rust2fun/macro.constant1.html) macro (K combinator)
- [constant2](https://docs.rs/rust2fun/0.1.0/rust2fun/macro.constant2.html) macro
- [constant](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.constant.html) macro
- [constant1](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.constant1.html) macro (K combinator)
- [constant2](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.constant2.html) macro
- etc
- [id](https://docs.rs/rust2fun/0.1.0/rust2fun/combinator/fn.id.html) (I combinator)
- [apply](https://docs.rs/rust2fun/0.1.0/rust2fun/combinator/fn.apply.html) (A combinator)
- [apply_to](https://docs.rs/rust2fun/0.1.0/rust2fun/combinator/fn.apply_to.html) (T combinator)
- [substitution](https://docs.rs/rust2fun/0.1.0/rust2fun/combinator/fn.substitution.html) (S combinator)
- [converge](https://docs.rs/rust2fun/0.1.0/rust2fun/combinator/fn.converge.html)
- [on](https://docs.rs/rust2fun/0.1.0/rust2fun/combinator/fn.on.html)
- [if_else](https://docs.rs/rust2fun/0.1.0/rust2fun/combinator/fn.if_else.html)
- [fix](https://docs.rs/rust2fun/0.1.0/rust2fun/combinator/fn.fix.html) (Y combinator)
- [id](https://docs.rs/rust2fun/0.2.0/rust2fun/combinator/fn.id.html) (I combinator)
- [apply](https://docs.rs/rust2fun/0.2.0/rust2fun/combinator/fn.apply.html) (A combinator)
- [apply_to](https://docs.rs/rust2fun/0.2.0/rust2fun/combinator/fn.apply_to.html) (T combinator)
- [substitution](https://docs.rs/rust2fun/0.2.0/rust2fun/combinator/fn.substitution.html) (S combinator)
- [converge](https://docs.rs/rust2fun/0.2.0/rust2fun/combinator/fn.converge.html)
- [on](https://docs.rs/rust2fun/0.2.0/rust2fun/combinator/fn.on.html)
- [if_else](https://docs.rs/rust2fun/0.2.0/rust2fun/combinator/fn.if_else.html)
- [fix](https://docs.rs/rust2fun/0.2.0/rust2fun/combinator/fn.fix.html) (Y combinator)

### Type classes:

- Semigroup
- Monoid
- [Semigroupal](https://docs.rs/rust2fun/0.1.0/rust2fun/semigroupal/trait.Semigroupal.html)
- [Invariant](https://docs.rs/rust2fun/0.1.0/rust2fun/invariant/trait.Invariant.html)
- [Functor](https://docs.rs/rust2fun/0.1.0/rust2fun/functor/trait.Functor.html)
- Bifunctor
- [Apply](https://docs.rs/rust2fun/0.1.0/rust2fun/apply/trait.Apply.html)
- [Applicative](https://docs.rs/rust2fun/0.1.0/rust2fun/applicative/trait.Applicative.html)
- [FlatMap](https://docs.rs/rust2fun/0.1.0/rust2fun/flatmap/trait.FlatMap.html)
- [Monad](https://docs.rs/rust2fun/0.1.0/rust2fun/monad/trait.Monad.html)
- [Semigroup](https://docs.rs/rust2fun/0.2.0/rust2fun/semigroup/trait.Semigroup.html)
- [Monoid](https://docs.rs/rust2fun/0.2.0/rust2fun/monoid/trait.Monoid.html)
- [Semigroupal](https://docs.rs/rust2fun/0.2.0/rust2fun/semigroupal/trait.Semigroupal.html)
- [Invariant](https://docs.rs/rust2fun/0.2.0/rust2fun/invariant/trait.Invariant.html)
- [Functor](https://docs.rs/rust2fun/0.2.0/rust2fun/functor/trait.Functor.html)
- [Bifunctor](https://docs.rs/rust2fun/0.2.0/rust2fun/bifunctor/trait.Bifunctor.html)
- [Apply](https://docs.rs/rust2fun/0.2.0/rust2fun/apply/trait.Apply.html)
- [Applicative](https://docs.rs/rust2fun/0.2.0/rust2fun/applicative/trait.Applicative.html)
- [FlatMap](https://docs.rs/rust2fun/0.2.0/rust2fun/flatmap/trait.FlatMap.html)
- [Monad](https://docs.rs/rust2fun/0.2.0/rust2fun/monad/trait.Monad.html) + ( [bind!](https://docs.rs/rust2fun/0.2.0/rust2fun/macro.bind.html) notation )

### Data types:

- NEVec (non-empty vector)
- Validated
- ValidatedNev
- [NEVec](https://docs.rs/rust2fun/0.2.0/rust2fun/data/ne_vec/struct.NEVec.html) (non-empty vector)
- [Validated](https://docs.rs/rust2fun/0.2.0/rust2fun/data/validated/enum.Validated.html)
- [ValidatedNev](https://docs.rs/rust2fun/0.2.0/rust2fun/data/validated/type.ValidatedNev.html)

## Examples

Expand Down Expand Up @@ -195,3 +195,12 @@ let profits: Vec<(String, i32)> = bind! {
0.1.0 (2023-01-22)

- Initial release: combinators, Semigroupal, Invariant, Functor, Apply, Applicative, FlatMap, Monad

0.2.0 (2023-09-10)

- The project got its logo (thanks [olasinitsyna](https://www.behance.net/olasinitsyna))
- Moved macros imports to the prelude
- Added type classes: Semigroup, Monoid, Bifunctor + Higher2 (thanks [lrind](https://github.com/lrind))
- Added data types: NEVec, Validated
- Added `bind!` notation
- Multiple fixes and improvements

0 comments on commit 8fc2e6e

Please sign in to comment.