Skip to content

Commit

Permalink
[Release] 0.4.1 (#205)
Browse files Browse the repository at this point in the history
* Add changelog
* Bump versions and release.

Signed-off-by: lloydmeta <lloydmeta@gmail.com>
  • Loading branch information
lloydmeta committed Nov 3, 2022
1 parent 166940a commit ff5dafc
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 21 deletions.
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.4.1]:
- Documentation fix for `Hcons::sculpt` (https://github.com/lloydmeta/frunk/pull/194)
- Optimise Semigroup for HashSet and HashMap (https://github.com/lloydmeta/frunk/pull/196)
- Update to 2021 edition (https://github.com/lloydmeta/frunk/pull/200)
- Add `extract` to get value out of 1-type coproduct (https://github.com/lloydmeta/frunk/pull/201)
- Fix needless borrow (https://github.com/lloydmeta/frunk/pull/202)
- Add `Coproduct::map` (https://github.com/lloydmeta/frunk/pull/204)

## [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)
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frunk"
edition = "2021"
version = "0.4.0"
version = "0.4.1"
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 @@ -19,23 +19,23 @@ time = "0.1.36"
[dependencies.frunk_core]
path = "core"
default-features = false
version = "0.4.0"
version = "0.4.1"

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

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

[dev-dependencies.frunk_laws]
path = "laws"
default-features = false
version = "0.4.0"
version = "0.4.1"

[dependencies]
serde = { version = "^1.0", optional = true, features = [ "derive" ] }
Expand Down
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frunk_core"
edition = "2021"
version = "0.4.0"
version = "0.4.1"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "Frunk core provides developers with HList, Coproduct, LabelledGeneric and Generic"
license = "MIT"
Expand All @@ -27,9 +27,9 @@ version = "0.4.0"
[dev-dependencies.frunk]
path = ".."
default-features = false
version = "0.4.0"
version = "0.4.1"

[dev-dependencies.frunk_proc_macros]
path = "../proc-macros"
default-features = false
version = "0.1.0"
version = "0.1.1"
4 changes: 2 additions & 2 deletions derives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frunk_derives"
edition = "2021"
version = "0.4.0"
version = "0.4.1"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "frunk_derives contains the custom derivations for certain traits in Frunk."
license = "MIT"
Expand All @@ -22,4 +22,4 @@ quote = "1"
[dependencies.frunk_proc_macro_helpers]
path = "../proc-macro-helpers"
default-features = false
version = "0.1.0"
version = "0.1.1"
4 changes: 2 additions & 2 deletions laws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frunk_laws"
edition = "2021"
version = "0.4.0"
version = "0.4.1"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "frunk_laws contains laws for algebras declared in Frunk."
license = "MIT"
Expand All @@ -15,7 +15,7 @@ travis-ci = { repository = "lloydmeta/frunk" }
[dependencies.frunk]
path = ".."
default-features = false
version = "0.4.0"
version = "0.4.1"

[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,7 +1,7 @@
[package]
name = "frunk_proc_macro_helpers"
edition = "2021"
version = "0.1.0"
version = "0.1.1"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "Common internal functions for frunk's proc macros"
license = "MIT"
Expand All @@ -20,4 +20,4 @@ proc-macro2 = "1"
[dependencies.frunk_core]
path = "../core"
default-features = false
version = "0.4.0"
version = "0.4.1"
6 changes: 3 additions & 3 deletions proc-macros-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frunk_proc_macros_impl"
edition = "2021"
version = "0.1.0"
version = "0.1.1"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "Proc macros inernal implementations for Frunk"
license = "MIT"
Expand All @@ -24,9 +24,9 @@ proc-macro = true
[dependencies.frunk_core]
path = "../core"
default-features = false
version = "0.4.0"
version = "0.4.1"

[dependencies.frunk_proc_macro_helpers]
path = "../proc-macro-helpers"
default-features = false
version = "0.1.0"
version = "0.1.1"
8 changes: 4 additions & 4 deletions proc-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "frunk_proc_macros"
edition = "2021"
version = "0.1.0"
version = "0.1.1"
authors = ["Lloyd <lloydmeta@gmail.com>"]
description = "Proc macros for Frunk"
license = "MIT"
Expand All @@ -18,14 +18,14 @@ version = "0.5"
[dependencies.frunk_core]
path = "../core"
default-features = false
version = "0.4.0"
version = "0.4.1"

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

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

0 comments on commit ff5dafc

Please sign in to comment.