Skip to content

Commit

Permalink
Release v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ericmj committed Jan 22, 2016
1 parent 9fa4f42 commit 7e78050
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
## v0.10.2-dev
## v0.10.2 (2016-01-22)

* Enhancements
* General optimizations in dependency resolver
* Add experimental faster backtracker that does more aggressive backtracking, set environment variable `HEX_EXPERIMENTAL_RESOLVER=1` to use it
* Merge backtrack messages that have similar parents
* Merge multiple versions into version ranges when possible for more succinct backtrack messages

* Bug fixes
* Reduce memory usage when resolver produces many backtrack messages

## v0.10.1 (2016-01-15)

Expand Down
2 changes: 1 addition & 1 deletion 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.10.2-dev",
version: "0.10.2",
elixir: "~> 1.0",
aliases: aliases,
deps: deps,
Expand Down
14 changes: 8 additions & 6 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,15 @@ function upload {


# UPDATE THIS FOR EVERY RELEASE
build 0.10.1 18.2.2 1.2.1 1.2.0
build 0.10.1 17.5.6.7 1.1.1 1.1.0
build 0.10.1 17.5.6.7 1.0.5 1.0.0
hex_version=$1

list_csv 0.10.1 1.0.0 1.1.0 1.2.0
hex_csv 0.10.1 1.0.0 1.1.0 1.2.0
upload 0.10.1 1.0.0 1.1.0 1.2.0
build $(hex_version) 18.2.2 1.2.1 1.2.0
build $(hex_version) 17.5.6.7 1.1.1 1.1.0
build $(hex_version) 17.5.6.7 1.0.5 1.0.0

list_csv $(hex_version) 1.0.0 1.1.0 1.2.0
hex_csv $(hex_version) 1.0.0 1.1.0 1.2.0
upload $(hex_version) 1.0.0 1.1.0 1.2.0


rm -rf _build
Expand Down

0 comments on commit 7e78050

Please sign in to comment.