Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,36 @@
# CHANGELOG

## v2.1.2-dev
## v2.2.0 (2025-05-09)

### Enhancements

* Add verifications of the registry cache ets table (`~/.cache/hex/cache.ets`)

* Add help when docs download times out

* Support `:warn_if_outdated` in deps

Let's say you have the following in `mix.exs`:

```elixir
{:ex_doc, ">= 0.0.0", warn_if_outdated: true, only: :dev}
```

and ExDoc is at version v0.37.2 in `mix.lock`, and v0.37.3 was released.

You will now see:

```sh
$ mix deps.get
Resolving Hex dependencies...
Resolution completed in 0.054s
Unchanged:
ex_doc 0.37.2
warning: the following deps are outdated and set "warn_if_outdated: true":

* ex_doc 0.37.3 is available
```

## v2.1.1 (2024-05-22)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Hex.MixProject do
use Mix.Project

@version "2.1.2-dev"
@version "2.2.0"

def project do
[
Expand Down
2 changes: 2 additions & 0 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ hex_version=$1
rm -rf *.ez

# UPDATE THIS FOR EVERY RELEASE
build ${hex_version} 25.3.2.20 1.18.3 1.18.0 noble-20250404
build ${hex_version} 25.3.2.20 1.17.3 1.17.0 noble-20250404
build ${hex_version} 24.3.4.17 1.16.3 1.16.0 focal-20240427
build ${hex_version} 24.3.4.17 1.15.8 1.15.0 focal-20240427
build ${hex_version} 23.3 1.14.2 1.14.0 xenial-20210114
Expand Down
Loading