Skip to content

Commit

Permalink
[Release] 0.4.0 (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydmeta authored Jun 25, 2021
1 parent 44a0fef commit 1bb2b7d
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 22 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]:

## [0.4.0]:
- [Breaking change] Rename `Hlist!` type macro to `HList!` (https://github.com/lloydmeta/frunk/issues/132)
- [Breaking change] Remove deprecated `HList.length()` (https://github.com/lloydmeta/frunk/issues/125)
- [Breaking change] `HFoldRightable` rework: now `HFoldRightable::foldr` does not differ from `HFoldLeftable::foldl` in **calling**, like `std::iter::DoubleEndedIterator::rfold` does not differ from `std::iter::Iterator::fold`. Note: though `foldr` **behavior** wasn't changed, all old `foldr` calls would either stop compiling or produce wrong results (https://github.com/lloydmeta/frunk/issues/171)
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.3.2"
version = "0.4.0"
authors = ["Lloyd <lloydmeta@gmail.com>"]
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.3.2"
version = "0.4.0"

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

[dependencies.frunk_derives]
path = "derives"
default-features = false
version = "0.3.2"
version = "0.4.0"

[dev-dependencies.frunk_laws]
path = "laws"
default-features = false
version = "0.3.1"
version = "0.4.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.3.2"
version = "0.4.0"
authors = ["Lloyd <lloydmeta@gmail.com>"]
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.3.2"
version = "0.4.0"

[dev-dependencies.frunk]
path = ".."
default-features = false
version = "0.3.2"
version = "0.4.0"

[dev-dependencies.frunk_proc_macros]
path = "../proc-macros"
default-features = false
version = "0.0.5"
version = "0.1.0"
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.3.2"
version = "0.4.0"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "frunk_derives contains the custom derivations for certain traits in Frunk."
license = "MIT"
Expand All @@ -21,4 +21,4 @@ quote = "1"
[dependencies.frunk_proc_macro_helpers]
path = "../proc-macro-helpers"
default-features = false
version = "0.0.5"
version = "0.1.0"
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.3.2"
version = "0.4.0"
authors = ["Lloyd <lloydmeta@gmail.com>"]
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.3.2"
version = "0.4.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.5"
version = "0.1.0"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "Common internal functions for frunk's proc macros"
license = "MIT"
Expand All @@ -19,4 +19,4 @@ proc-macro2 = "1"
[dependencies.frunk_core]
path = "../core"
default-features = false
version = "0.3.2"
version = "0.4.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.5"
version = "0.1.0"
authors = ["Lloyd <lloydmeta@gmail.com>"]
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.3.2"
version = "0.4.0"

[dependencies.frunk_proc_macro_helpers]
path = "../proc-macro-helpers"
default-features = false
version = "0.0.5"
version = "0.1.0"
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.5"
version = "0.1.0"
authors = ["Lloyd <lloydmeta@gmail.com>"]
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.3.2"
version = "0.4.0"

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

[dev-dependencies.frunk]
path = "../."
default-features = false
version = "0.3.2"
version = "0.4.0"

0 comments on commit 1bb2b7d

Please sign in to comment.