# `NPM.ReleaseNotes`
[🔗](https://github.com/elixir-volt/npm_ex/blob/v0.7.4/lib/npm/release_notes.ex#L1)

Extracts release notes from changelog content for specific version ranges.

# `between`

```elixir
@spec between(String.t(), String.t(), String.t()) :: [String.t()]
```

Extracts notes between two versions (inclusive).

# `for_version`

```elixir
@spec for_version(String.t(), String.t()) :: String.t() | nil
```

Extracts notes for a specific version.

# `latest_version`

```elixir
@spec latest_version(String.t()) :: String.t() | nil
```

Returns the latest version mentioned.

# `sections`

```elixir
@spec sections(String.t()) :: [{String.t(), String.t()}]
```

Extracts all version sections from changelog content.

# `version_count`

```elixir
@spec version_count(String.t()) :: non_neg_integer()
```

Counts versions in the changelog.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
