Skip to content

Commit dc682e4

Browse files
committed
synced with the latest human_name rust crate
1 parent ce4fcf5 commit dc682e4

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.6.1 (2024-10-13)
4+
5+
* Updated crate for `human_name` (_2.0.4_)
6+
37
## v0.6.0 (2024-10-07)
48

59
* Updated crate for `rustler` (_0.34.0_).

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This package can be installed by adding `human_name` to your list of dependencie
1515
```elixir
1616
def deps do
1717
[
18-
{:human_name, "~> 0.6.0"}
18+
{:human_name, "~> 0.6.1"}
1919
]
2020
end
2121
```

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule HumanName.MixProject do
22
use Mix.Project
33

4-
@version "0.6.0"
4+
@version "0.6.1"
55
@description "Elixir bindings for the human-name crate implemented as a safe Rust NIF."
66
@repo_url "https://github.com/amokan/human_name"
77

native/human_name_nif/Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

native/human_name_nif/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "human_name_nif"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
authors = []
55
edition = "2018"
66

@@ -11,4 +11,4 @@ crate-type = ["cdylib"]
1111

1212
[dependencies]
1313
rustler = "0.34.0"
14-
human_name = "2.0.3"
14+
human_name = "2.0.4"

0 commit comments

Comments
 (0)