Skip to content

Commit

Permalink
Merge pull request #1518 from StackStorm/v0.9.2
Browse files Browse the repository at this point in the history
v0.9.2 release
  • Loading branch information
manasdk committed May 26, 2015
2 parents bfc28ab + 90bfe99 commit 9834e67
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Changelog
=========

v0.9.2 - May 26, 2015
---------------------

* Fir broken ``packs.download`` action. (bug-fix)

v0.9.1 - May 12, 2015
---------------------

Expand Down
5 changes: 3 additions & 2 deletions contrib/packs/actions/pack_mgmt/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ def run(self, packs, repo_url, abs_repo_base, verifyssl=True, branch='master'):
lock_name = hashlib.md5(repo_name).hexdigest() + '.lock'

with LockFile('/tmp/%s' % (lock_name)):
abs_local_path = self._clone_repo(repo_url, branch=branch)
abs_local_path = self._clone_repo(repo_url=repo_url, verifyssl=verifyssl,
branch=branch)
try:
# st2-contrib repo has a top-level packs folder that actually contains the
pack_abs_local_path = os.path.join(abs_local_path, PACK_REPO_ROOT)
Expand All @@ -30,7 +31,7 @@ def run(self, packs, repo_url, abs_repo_base, verifyssl=True, branch='master'):
return self._validate_result(result=result, packs=packs, repo_url=repo_url)

@staticmethod
def _clone_repo(repo_url, branch='master'):
def _clone_repo(repo_url, verifyssl=True, branch='master'):
user_home = os.path.expanduser('~')
# Assuming git url is of form git@github.com:user/git-repo.git
repo_name = repo_url[repo_url.rfind('/') + 1: repo_url.rfind('.')]
Expand Down
4 changes: 2 additions & 2 deletions docs/source/install/deb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The easiest way to install these is to use the requirements.txt file from the |s

::

curl -q -k -O https://downloads.stackstorm.net/releases/st2/0.9.1/requirements.txt
curl -q -k -O https://downloads.stackstorm.net/releases/st2/0.9.2/requirements.txt
pip install -r requirements.txt

RabbitMQ
Expand Down Expand Up @@ -69,7 +69,7 @@ The format of the DEB packages is like this: <component>_<version>-<build>_amd64
You can download the packages from this URL:
::

https://downloads.stackstorm.net/releases/st2/0.9.1/debs/current/
https://downloads.stackstorm.net/releases/st2/0.9.2/debs/current/

--------------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/install/rpm.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ The format of the RPM packages is like this: <component>-<version>-<build>.noarc
You can download the packages from this URL:
::

https://downloads.stackstorm.net/releases/st2/0.9.1/rpms/current/
https://downloads.stackstorm.net/releases/st2/0.9.2/rpms/current/

--------------

Expand Down
2 changes: 1 addition & 1 deletion st2client/st2client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.9.1'
__version__ = '0.9.2'
2 changes: 1 addition & 1 deletion st2common/st2common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.9.1'
__version__ = '0.9.2'
2 changes: 1 addition & 1 deletion tools/st2_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ sleep ${WARNING_SLEEP_DELAY}

if [ -z $1 ]
then
VER='0.9.1'
VER='0.9.2'
elif [[ "$1" == "latest" ]]; then
VER='0.10dev'
else
Expand Down

0 comments on commit 9834e67

Please sign in to comment.