Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmj committed Sep 25, 2015
1 parent 78df5ef commit d3c5128
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v0.9.0-dev
## v0.9.0 (2015-09-25)

* Enhancements
* Pass build tool information to Mix (supported in Elixir 1.1.0)
Expand All @@ -12,7 +12,7 @@
* Reduce noise when users gets lots of resolution errors and generally improve their output
* Add Server Name Indication support for HTTPS requests
* Add `HEX_UNSAFE_HTTPS` for disabling certificate checking
* Renamed `:contributors` metadata to `:maintainers` to better reflect purpose of field
* Rename `:contributors` metadata to `:maintainers` to better reflect purpose of field

* Bug fixes
* `HEX_API` no longer automatically adds `api/` to URL
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

This document simply outlines the release process:

1. Ensure you are running on the oldest supported Erlang version
1. Ensure you are running on the oldest supported Erlang version (17.5.6.3 for Elixir 1.0 and 1.1, 18.1 for Elixir 1.2)

2. Run `mix do clean, test` to ensure all tests pass from scratch and the CI is green
2. Run `mix do clean --deps, clean && mix test --include integration` to ensure all tests pass from scratch and the CI is green

3. Remove all `-dev` extension from versions (see below for all files)

Expand Down
5 changes: 2 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.9.0-dev",
version: "0.9.0",
aliases: aliases,
deps: deps,
elixirc_options: elixirc_options(Mix.env)]
Expand Down Expand Up @@ -41,8 +41,7 @@ defmodule Hex.Mixfile do
no_log fn -> Hex.stop end
end

paths = Path.join(Mix.Local.archives_path, "hex*.ez")
|> Path.wildcard
paths = Path.join(Mix.Local.archives_path, "hex*.ez") |> Path.wildcard

Enum.each(paths, fn archive ->
ebin = Mix.Archive.ebin(archive)
Expand Down

0 comments on commit d3c5128

Please sign in to comment.