Skip to content

Commit

Permalink
Rel 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-kolarik committed Feb 14, 2024
1 parent 71ff4a5 commit 7fab84c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 30 deletions.
25 changes: 20 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,31 @@ All notable changes to this project will be documented in this file. The
format is based on [Keep a Changelog], and this project aims to follow
[Semantic Versioning].

## [Unreleased]
## [0.1.6] - 2024-02-14

### Added

- TODO sequence added to `MutableVec``
- `unwrap_or_default` added to `SignalExtMapOption`
- `MutableVecExt::enumerate_map` added

### Changed
- `MutableVecExt::find_*` and `filter_*` added

- `SignalExtMapOption::unwrap_or_default` added

- `SignalSpawn::spawn_fut` and `SignalVecSpawn::spawn_fut` added

## [0.1.5] - 2023-10-23

### Added

- TODO `MutableOption::empty_if_contains` changed to `MutableOption::take_if_value`
- `MutableVecExt::find_set_*` and `find_remove` added

- `MutableVecExt::extend_*` and `replace_*` added

- `SignalVecFinalizerExt::is_empty`, `len`, `all` and `any` added

### Changed

- `SignalVecItemExt` renamed to `SignalVecFirstExt`

## [0.1.4] - 2023-08-20

Expand All @@ -23,6 +37,7 @@ format is based on [Keep a Changelog], and this project aims to follow
- Introduce wasm environment, `wasm-bindgen-futures` used for spawning tasks.

- `MutableOption::empty_if_contains` changed to `MutableOption::take_if_value`

## [0.1.3] - 2023-08-20

### Fixed
Expand Down
50 changes: 25 additions & 25 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[package]
name = "futures-signals-ext"
version = "0.1.5"
authors = ["[email protected]"]
description = "Extension to futures-signals: MutableOption with combinators, spawning, predicate driven selections from SignalVec."
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/martin-kolarik/futures-signals-ext"
homepage = "https://github.com/martin-kolarik/futures-signals-ext"

[features]
default = ["option", "spawn-local"]
option = []
spawn = ["async-global-executor"]
spawn-local = ["async-global-executor", "wasm-bindgen-futures"]

[dependencies]
futures-signals = { version = "^0.3", default-features = false }
pin-project-lite = { version = "^0.2" }

[target.'cfg(not(target_os = "unknown"))'.dependencies]
async-global-executor = { version = "^2.3", default-features = false, optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = { version = "^0.4", optional = true }
[package]
name = "futures-signals-ext"
version = "0.1.6"
authors = ["[email protected]"]
description = "Extension to futures-signals: MutableOption with combinators, spawning, predicate driven selections from SignalVec."
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/martin-kolarik/futures-signals-ext"
homepage = "https://github.com/martin-kolarik/futures-signals-ext"

[features]
default = ["option", "spawn-local"]
option = []
spawn = ["async-global-executor"]
spawn-local = ["async-global-executor", "wasm-bindgen-futures"]

[dependencies]
futures-signals = { version = "^0.3", default-features = false }
pin-project-lite = { version = "^0.2" }

[target.'cfg(not(target_os = "unknown"))'.dependencies]
async-global-executor = { version = "^2.3", default-features = false, optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = { version = "^0.4", optional = true }

0 comments on commit 7fab84c

Please sign in to comment.