Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]:

## [0.3.0] - 2019-03-23
### Added
- More transmogrifications supported out of the box (https://github.com/lloydmeta/frunk/pull/152)
- `Box`, `Option`, `Vec` and more.
- More idiomatic Debug impl for Field Debug impls should use DebugStruct #153
- [no-std] support https://github.com/lloydmeta/frunk/pull/148
- Note: this is a breaking change, see [the PR](https://github.com/lloydmeta/frunk/pull/148) for details

## [0.2.4] - 2019-02-10
### Added
- Added `ToMut` trait, which allows borrowing mutably from a Coproduct or HList.
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk"
version = "0.2.4"
version = "0.3.0"
authors = ["Lloyd <[email protected]>"]
description = "Frunk provides developers with a number of functional programming tools like HList, Coproduct, Generic, LabelledGeneric, Validated, Monoid, Semigroup and friends."
license = "MIT"
Expand All @@ -18,23 +18,23 @@ time = "0.1.36"
[dependencies.frunk_core]
path = "core"
default-features = false
version = "0.2.4"
version = "0.3.0"

[dependencies.frunk_proc_macros]
path = "proc-macros"
default-features = false
optional = true
version = "0.0.2"
version = "0.0.3"

[dependencies.frunk_derives]
path = "derives"
default-features = false
version = "0.2.4"
version = "0.3.0"

[dev-dependencies.frunk_laws]
path = "laws"
default-features = false
version = "0.2.4"
version = "0.3.0"

[dependencies]
serde = { version = "^1.0", optional = true, features = [ "derive" ] }
Expand Down
8 changes: 4 additions & 4 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk_core"
version = "0.2.4"
version = "0.3.0"
authors = ["Lloyd <[email protected]>"]
description = "Frunk core provides developers with HList, Coproduct, LabelledGeneric and Generic"
license = "MIT"
Expand All @@ -21,14 +21,14 @@ serde = { version = "^1.0", optional = true, features = [ "derive" ] }
[dev-dependencies.frunk_derives]
path = "../derives"
default-features = false
version = "0.2.4"
version = "0.3.0"

[dev-dependencies.frunk]
path = ".."
default-features = false
version = "0.2.4"
version = "0.3.0"

[dev-dependencies.frunk_proc_macros]
path = "../proc-macros"
default-features = false
version = "0.0.2"
version = "0.0.3"
4 changes: 2 additions & 2 deletions derives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk_derives"
version = "0.2.4"
version = "0.3.0"
authors = ["Lloyd <[email protected]>"]
description = "frunk_derives contains the custom derivations for certain traits in Frunk."
license = "MIT"
Expand All @@ -21,4 +21,4 @@ quote = "0.6"
[dependencies.frunk_proc_macro_helpers]
path = "../proc-macro-helpers"
default-features = false
version = "0.0.2"
version = "0.0.3"
4 changes: 2 additions & 2 deletions laws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk_laws"
version = "0.2.4"
version = "0.3.0"
authors = ["Lloyd <[email protected]>"]
description = "frunk_laws contains laws for algebras declared in Frunk."
license = "MIT"
Expand All @@ -14,7 +14,7 @@ travis-ci = { repository = "lloydmeta/frunk" }
[dependencies.frunk]
path = ".."
default-features = false
version = "0.2.4"
version = "0.3.0"

[dependencies]
quickcheck = "0.6.1"
4 changes: 2 additions & 2 deletions proc-macro-helpers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk_proc_macro_helpers"
version = "0.0.2"
version = "0.0.3"
authors = ["Lloyd <[email protected]>"]
description = "Common internal functions for frunk's proc macros"
license = "MIT"
Expand All @@ -18,4 +18,4 @@ quote = "0.6"
[dependencies.frunk_core]
path = "../core"
default-features = false
version = "0.2.4"
version = "0.3.0"
6 changes: 3 additions & 3 deletions proc-macros-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk_proc_macros_impl"
version = "0.0.2"
version = "0.0.3"
authors = ["Lloyd <[email protected]>"]
description = "Proc macros inernal implementations for Frunk"
license = "MIT"
Expand All @@ -23,9 +23,9 @@ proc-macro = true
[dependencies.frunk_core]
path = "../core"
default-features = false
version = "0.2.4"
version = "0.3.0"

[dependencies.frunk_proc_macro_helpers]
path = "../proc-macro-helpers"
default-features = false
version = "0.0.2"
version = "0.0.3"
8 changes: 4 additions & 4 deletions proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk_proc_macros"
version = "0.0.2"
version = "0.0.3"
authors = ["Lloyd <[email protected]>"]
description = "Proc macros for Frunk"
license = "MIT"
Expand All @@ -17,14 +17,14 @@ version = "0.5"
[dependencies.frunk_core]
path = "../core"
default-features = false
version = "0.2.4"
version = "0.3.0"

[dependencies.frunk_proc_macros_impl]
path = "../proc-macros-impl"
default-features = false
version = "0.0.2"
version = "0.0.3"

[dev-dependencies.frunk]
path = "../."
default-features = false
version = "0.2.2"
version = "0.3.0"