Skip to content

Commit

Permalink
Release/core 0.0.20 (#72)
Browse files Browse the repository at this point in the history
* Core

* Derives

* Bump test-derive dep on Core

* Main

* Laws

* Bump laws dep on main
  • Loading branch information
lloydmeta authored Sep 27, 2017
1 parent 4172213 commit 3bf8302
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk"
version = "0.1.32"
version = "0.1.33"
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 @@ -17,15 +17,15 @@ time = "0.1.36"

[dependencies.frunk_core]
path = "core"
version = "0.0.19"
version = "0.0.20"

[dependencies.frunk_derives]
path = "derives"
version = "0.0.20"
version = "0.0.21"

[dev-dependencies.frunk_laws]
path = "laws"
version = "0.0.10"
version = "0.0.11"

[dependencies]
serde = { version = "^1.0", optional = true, default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "frunk_core"
version = "0.0.19"
version = "0.0.20"
authors = ["Lloyd <[email protected]>"]
description = "Frunk core provides developers with HList and Generic"
license = "MIT"
Expand All @@ -20,4 +20,4 @@ with-serde = ["serde", "serde_derive"]

[dev-dependencies.frunk_derives]
path = "../derives"
version = "0.0.20"
version = "0.0.21"
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.0.20"
version = "0.0.21"
authors = ["Lloyd <[email protected]>"]
description = "frunk_derives contains the custom derivations for certain traits in Frunk."
license = "MIT"
Expand All @@ -20,4 +20,4 @@ quote = "0.3.15"

[dependencies.frunk_core]
path = "../core"
version = "0.0.19"
version = "0.0.20"
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.0.10"
version = "0.0.11"
authors = ["Lloyd <[email protected]>"]
description = "frunk_laws contains laws for algebras declared in Frunk."
license = "MIT"
Expand All @@ -13,7 +13,7 @@ travis-ci = { repository = "lloydmeta/frunk" }

[dependencies.frunk]
path = ".."
version = "0.1.32"
version = "0.1.33"

[dependencies]
quickcheck = "0.4.1"

0 comments on commit 3bf8302

Please sign in to comment.