Skip to content

Commit

Permalink
chore: bump version to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-stemmler committed Jun 25, 2023
1 parent 9759429 commit e48fd9c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

## [Unreleased] - (release date)

## [0.1.4] - 2023-06-25

### Changed

- Updated `indexmap` dependency to `2.x`
Expand Down Expand Up @@ -35,7 +37,8 @@
Initial version

<!-- next-url -->
[Unreleased]: https://github.com/matthias-stemmler/funcmap/compare/v0.1.3...HEAD
[Unreleased]: https://github.com/matthias-stemmler/funcmap/compare/v0.1.4...HEAD
[0.1.4]: https://github.com/matthias-stemmler/funcmap/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/matthias-stemmler/funcmap/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/matthias-stemmler/funcmap/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/matthias-stemmler/funcmap/compare/v0.1.0...v0.1.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -24,7 +24,7 @@ order to use it, add this to the `dependencies` table of your `Cargo.toml`:

```toml
[dependencies]
funcmap = "0.1.3"
funcmap = "0.1.4"
```

## Usage
Expand Down
12 changes: 6 additions & 6 deletions crates-io.md
Expand Up @@ -24,7 +24,7 @@ order to use it, add this to the `dependencies` table of your `Cargo.toml`:

```toml
[dependencies]
funcmap = "0.1.3"
funcmap = "0.1.4"
```

## Usage
Expand Down Expand Up @@ -119,8 +119,8 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.

[examples]: https://github.com/matthias-stemmler/funcmap/tree/v0.1.3/funcmap/examples
[docs]: https://docs.rs/funcmap/0.1.3/funcmap/
[`funcmap`]: https://docs.rs/funcmap/0.1.3/funcmap/trait.FuncMap.html
[`tryfuncmap`]: https://docs.rs/funcmap/0.1.3/funcmap/trait.TryFuncMap.html
[`func_map`]: https://docs.rs/funcmap/0.1.3/funcmap/trait.FuncMap.html#tymethod.func_map
[examples]: https://github.com/matthias-stemmler/funcmap/tree/v0.1.4/funcmap/examples
[docs]: https://docs.rs/funcmap/0.1.4/funcmap/
[`funcmap`]: https://docs.rs/funcmap/0.1.4/funcmap/trait.FuncMap.html
[`tryfuncmap`]: https://docs.rs/funcmap/0.1.4/funcmap/trait.TryFuncMap.html
[`func_map`]: https://docs.rs/funcmap/0.1.4/funcmap/trait.FuncMap.html#tymethod.func_map
4 changes: 2 additions & 2 deletions funcmap/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "funcmap"
version = "0.1.3"
version = "0.1.4"
authors = ["Matthias Stemmler <matthias.stemmler@gmail.com>"]
edition = "2021"
rust-version = "1.64" # should be the same as in Cargo.toml of funcmap_derive, docs and MSRV job
Expand All @@ -18,4 +18,4 @@ alloc = []
std = ["alloc"]

[dependencies]
"funcmap_derive" = { version = "=0.1.3", path = "../funcmap_derive" }
"funcmap_derive" = { version = "=0.1.4", path = "../funcmap_derive" }
2 changes: 1 addition & 1 deletion funcmap_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "funcmap_derive"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
rust-version = "1.64" # should be the same as in Cargo.toml of funcmap, docs and MSRV job
description = "Derivable functorial mappings for Rust"
Expand Down

0 comments on commit e48fd9c

Please sign in to comment.