Skip to content

Commit

Permalink
Release v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmj committed Mar 11, 2016
1 parent ce0c30e commit 4fd74dd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
## v0.11.2-dev
## v0.11.2 (2016-03-11)

* Enhancements
* Verify registry signature against public key
* Improve missing registry error message
* Deprecate `HEX_CDN` in favor of `HEX_REPO` and `HEX_MIRROR`. See the `hex` task for more information
* Deprecate `:cdn_url` config in favor of `:repo_url` and `mirror_url`. See the `hex.config` task for more information
* Improve performance of parallel package fetching
* Use fastly instead of S3 for the Hex.pm repository
* Add `--delete` option to `hex.config` task

* Bug fixes
* Show local time in hex.info
* Correctly unlock all dependencies on `deps.update`
* Always fetch registry if it's missing or known to be old

## v0.11.1 (2016-03-03)

Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Hex.Mixfile do

def project do
[app: :hex,
version: "0.11.2-dev",
version: "0.11.2",
elixir: "~> 1.0",
aliases: aliases,
deps: deps,
Expand All @@ -29,8 +29,8 @@ defmodule Hex.Mixfile do
defp elixirc_options(:prod), do: [debug_info: false]
defp elixirc_options(_), do: []

defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
defp elixirc_paths(_), do: ["lib", "web"]
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]

defp aliases do
["compile.elixir": [&unload_hex/1, "compile.elixir"],
Expand Down

0 comments on commit 4fd74dd

Please sign in to comment.