Skip to content

Commit 3a348b7

Browse files
committed
Release v0.21.3
1 parent c67ce8a commit 3a348b7

3 files changed

Lines changed: 20 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
# CHANGELOG
22

3+
## v0.21.3 (2021-09-18)
4+
5+
### Enhancements
6+
7+
* Add config `no_short_urls` and env var `HEX_NO_SHORT_URLS` to disable short URL generation
8+
* Mention `mix hex.sponsor` when fetching packages that accept sponsorship
9+
* Add `--key` option to `mix hex.repo show NAME` to print repository key
10+
* Improve output when update check fails
11+
* Print hint if version resolution is slow
12+
13+
### Bug fixes
14+
15+
* Improve version backtracking to fix slow version resolutions and downgrading of dependencies
16+
317
## v0.21.2 (2021-04-14)
418

519
### Enhancements
620

7-
* Adds support for `mix hex.package fetch PACKAGE` (without version)
21+
* Add support for `mix hex.package fetch PACKAGE` (without version)
822

923
### Bug fixes
1024

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Hex.MixProject do
22
use Mix.Project
33

4-
@version "0.21.2"
4+
@version "0.21.3"
55

66
{:ok, system_version} = Version.parse(System.version())
77
@elixir_version {system_version.major, system_version.minor, system_version.patch}

release.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ function upload {
6363
hex_version=$1
6464

6565
# UPDATE THIS FOR EVERY RELEASE
66+
build ${hex_version} 22.3 1.12.3 1.12.0
6667
build ${hex_version} 21.3 1.11.4 1.11.0
6768
build ${hex_version} 21.3 1.10.4 1.10.0
6869
build ${hex_version} 20.3 1.9.4 1.9.0
@@ -77,9 +78,9 @@ build ${hex_version} 17.5 1.1.1 1.1.0
7778
build ${hex_version} 17.5 1.0.5 1.0.0
7879
rm -rf _build
7980

80-
hex_csv "${hex_version}" 1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 1.8.0 1.9.0 1.10.0 1.11.0
81-
upload "${hex_version}" 1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 1.8.0 1.9.0 1.10.0 1.11.0
81+
hex_csv "${hex_version}" 1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 1.8.0 1.9.0 1.10.0 1.11.0 1.12.0
82+
upload "${hex_version}" 1.0.0 1.1.0 1.2.0 1.3.0 1.4.0 1.5.0 1.6.0 1.7.0 1.8.0 1.9.0 1.10.0 1.11.0 1.12.0
8283

8384
pushd "../hexpm-ops"
84-
scripts/kubeexec hexpm --prod -- bin/hexpm eval "Hexpm.ReleaseTasks.script([\"add_install.exs\",\"${hex_version}\",\"1.11.0\",\"1.10.0\",\"1.9.0\",\"1.8.0\",\"1.7.0\",\"1.6.0\",\"1.5.0\",\"1.4.0\",\"1.3.0\",\"1.2.0\",\"1.1.0\",\"1.0.0\"])"
85+
scripts/kubeexec hexpm --prod -- bin/hexpm eval "Hexpm.ReleaseTasks.script([\"add_install.exs\",\"${hex_version}\",\"1.12.0\",\"1.11.0\",\"1.10.0\",\"1.9.0\",\"1.8.0\",\"1.7.0\",\"1.6.0\",\"1.5.0\",\"1.4.0\",\"1.3.0\",\"1.2.0\",\"1.1.0\",\"1.0.0\"])"
8586
popd

0 commit comments

Comments
 (0)