Skip to content

Commit

Permalink
Merge pull request #430 from Yelp/eliu_bump_v0.2.2
Browse files Browse the repository at this point in the history
pre-tagging version bumping
  • Loading branch information
suntzu86 committed Dec 5, 2014
2 parents dec49bb + 14acc46 commit 83a7151
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Added the COBYLA optimizer to the expected improvement optimization class. (#370)
* OptimizerParameter struct members now directly readable/writeable from Python; added EqualityComparisonMixin (#138)
* C++ GradientDescentParameters object now stores ``num_steps_averaged`` (but does not use it yet) (#391)
* conda build system for MOE (#417)

* Changes

Expand Down
4 changes: 2 additions & 2 deletions conda-recipe/moe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package:
name: moe
version: !!str 0.2.1
version: !!str 0.2.2

source:
git_url: https://github.com/Yelp/MOE.git
git_tag: v0.2.1
git_tag: v0.2.2

build:
preserve_egg_dir: yes
Expand Down
2 changes: 1 addition & 1 deletion moe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#: MINOR: incremented for adding functionality in a backwards-compatible manner
MINOR = 2
#: PATCH: incremented for backward-compatible bug fixes and minor capability improvements
PATCH = 1
PATCH = 2
#: Latest release version of MOE
__version__ = "{0:d}.{1:d}.{2:d}".format(MAJOR, MINOR, PATCH)

Expand Down

0 comments on commit 83a7151

Please sign in to comment.